40
現在我有兩個類AllMethods.cs
和caller.cs
。如何使方法調用C#類中的另一個方法?
我在類AllMethods.cs
中有一些方法。我想在caller.cs
中編寫一個代碼,以便調用AllMethods.cs
中的某個方法。
例如在代碼:
public class allmethods
public static void Method1()
{
// Method1
}
public static void Method2()
{
// Method2
}
class caller
{
public static void Main(string[] args)
{
// I want to write a code here to call Method2 for example from AllMethods Class
}
}
我怎樣才能做到這一點?任何幫助?
謝謝。