呼叫方法

呼叫靜態方法:

 placeholderCopy// Single argument
System.Console.WriteLine("Hello World");  

// Multiple arguments
string name = "User";
System.Console.WriteLine("Hello, {0}!", name);

呼叫靜態方法並儲存其返回值:

 placeholderCopystring input = System.Console.ReadLine();

呼叫例項方法:

 placeholderCopyint x = 42;
// The instance method called here is Int32.ToString()
string xAsString = x.ToString();

呼叫泛型方法

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