我有一个名为methods.cs
的类包含两种方法。
例如method1
和method2
我想method2
致电method1
代码澄清:
public static void Method1()
{
// Method1
}
public static void Method2()
{
// Method2
}
我想Method2
致电Method1
。我怎样才能做到这一点?
答案 0 :(得分:6)
很高兴看到你寻求帮助!为了在另一个方法中调用Method,同一个Class中包含的方法非常简单。只需通过它的名字来称呼它! Here is a nice little tutorial on Methods我的例子如下!
public class ClassName
{
// Method definition to call in another Method
public void MethodToCall()
{
// Add what you want to be performed here
}
// Method definition performing a Call to another Method
public void MethodCalling()
{
// Method being called. Do this by using its Method Name
// be sure to not forget the semicolon! :)
MethodToCall();
}
}
祝你好运,希望对你有所帮助!
答案 1 :(得分:5)
也许我错过了你的问题,但它应该像这样简单:
public static void Method1()
{
}
public static void Method2()
{
Method1();
}
答案 2 :(得分:3)
这几乎与您刚才提出的问题完全相同:
How to make method call another one in classes C#?
但是...
public class MyClass
{
public static void Method1()
{
// Method1
}
public static void Method2()
{
Method1();
}
}
答案 3 :(得分:0)
public static void Method2()
{
// Method2
Method1();
}