我有以下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);
}
}
此示例代码引发了一些错误。
为什么会这样?
答案 0 :(得分:3)
1:'inn'在当前环境中不存在,
您尚未在代码中的任何位置定义inn
。应该是这样的:
Test t = new Test();
Innovater inn = new Innovator(); //declare and (instantiate)
string file_name1 = t.Docs(ref inn);
或者您可以从框架中获取inn
,例如:
Innovater inn = GetInnovaterFromTheFramework();
您的方法GetInnovaterFromTheFramework
将从框架返回对象。
使用ref
关键字将参数传递给参数的方式是正确的,唯一的事情是当前上下文中不存在inn
。
答案 1 :(得分:1)
您需要在main()中声明一个Innovator实例:
Innovator inn = new Innovator();