我已经学习 Visual C# 2010 一天了。我在 Objective-c/xcode 方面有大约一年的经验。在 obj-c 中有 Class 方法和 Instance 方法。我已经弄清楚如何在 C# 中执行实例方法,但是如何运行(和制作)类方法?到目前为止,我最接近的是:
new Mode().selectScenario();
//and further below...
class Mode
{
public string selectScenario()
{
return "select scenario";
}
public string enterToFind()
{
return "enter to find";
}
}
我在这里要做的是在执行 Mode.selectScenario() 或其他操作时返回一个字符串。在objective-c中我会使用[Mode selectScenario]
,但我不确定C#。谢谢