C#调用方法

示例

调用静态方法:

// 单论点
System.Console.WriteLine("Hello World");  

// 多个参数
string name = "User";
System.Console.WriteLine("Hello, {0}!", name);

调用静态方法并存储其返回值:

string input = System.Console.ReadLine();

调用实例方法:

int x = 42;
// 这里调用的实例方法是Int32.ToString()
string xAsString = x.ToString();

调用通用方法

// Assuming a method 'T[] CreateArray<T>(int size)'
DateTime[] dates = CreateArray<DateTime>(8);