私はこのような機能を持っています:
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
この問題を解決するのを手伝ってくれませんか