我在 Visual Studio 2010 的应用程序代码文件夹中创建了一个类。当我在方法之外(全局)声明任何变量时,它在该方法中不可见。我是asp.net 的新手,可能是我犯了任何错误,但我无法理解。所以我需要一些帮助。我的代码如下...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class Class2
{
public Class2()
{
//
// TODO: Add constructor logic here
//
}
int i;
public static void calculate(string)
{
// here want that variable but i can't get it in intelliscence.
}
}