次の C# コードがあります。
public class Test
{
public string Docs(ref Innovator inn) ///Innovator is an Object defined in the framework of the application
{
//// some code
string file_name = "filename";
return file_name;
}
public static void Main ()/// here I' m trying to use the above method' s return value inside main()
{
Test t = new Test();
string file_name1 = t.Docs(ref inn);
}
}
このサンプル コードは、いくつかのエラーをスローしています。
- 'inn' は現在のコンテキストには存在しません。
- メソッドに無効な引数があります。
どうしてこれなの?