我的程序有一些方法,其中一些调用了一些其他方法我的问题是我想使用一个方法在以前的方法中生成的一些数据,我不知道我应该怎么做。
namespace MyProg
{
public partial class MyProg: Form
{
public static void method1(string text)
{
//procedures
method2("some text");
// Here i want to use the value from string letter from method2.
}
public static void method2(string text)
{
//procedures
string letter = "A"; //Its not A its based on another method.
}
}
}