已知:  int a=100;     void Func(ref int b)  { ……  }   则下列函数调用正确的是()
A: Func(ref(10*a))
B: Func(ref 10)
C: Func(ref(a) )
D: Func(ref a)
出自:计算机科学