How do you return a null Tuple from f# to c#?

前端 未结 0 1036
粉色の甜心
粉色の甜心 2021-01-16 18:04

I have this type-correct C# function:

static System.Tuple f(int n) { 
  switch (n) { 
    case 0: return null;
    default: return System.Tuple         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题