40
今私は2つのクラスAllMethods.cs
とcaller.cs
を持っています。メソッドC#で別のメソッドを呼び出す方法は?
クラスAllMethods.cs
にいくつかのメソッドがあります。 AllMethods.cs
で特定のメソッドを呼び出すために、caller.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
}
}
どのように私はそれを達成することができますか?どんな助け?
ありがとうございました。