1

私はこのような機能を持っています:

example(long a,long b,string c,DateTime d,DateTime e,out decimal f)

私はそれを呼び出そうとしているとき、私はこれをやっています:

long a =1;
long b=2;
string c="";
DateTime d=DateTime.Now;
DateTime e=DateTime.Now;
decimal f=0;

example(a,b,c,d,e,f) --> Here is giving me the error : the best overloaded method has some invalid argument 

この問題を解決するのを手伝ってくれませんか

4

4 に答える 4

3

電話する必要がありますexample(a,b,c,d,e, out f);

また、初期化する必要はありfません。そうしない方が良いです (誤解を招く可能性があります)。

//decimal f=0;
decimal f;
于 2013-09-17T06:58:49.313 に答える