我对变量声明中的内存管理有疑问。
在我的班级中,我有大约 20 种方法,我在整个班级中使用了大约 50 个变量。
我在类开始时全局声明了所有变量。
这是正确的做法吗?或者哪个更好......使用结构或其他任何东西???
下面显示一个基本示例,我需要使用优化我的内存。
class Program
{
static int a, b, c, d; //----> Here am declaring , i need any other way
static void Main(string[] args)
{
a = 10;
b = 20;
c = 30;
d = 40;
int result = add(a, b, c, d);
Console.WriteLine(result);
Console.ReadLine();
}
public static int add(int w, int x, int y, int z)
{
return w + x + y + z;
}
}