I have a class called methods.cs
contains two methods.
For example method1
and method2
I want to make method2
call method1
Code clarification:
public static void Method1()
{
// Method1
}
public static void Method2()
{
// Method2
}
I want to make Method2
call Method1
. How can I achieve that?