我有以下内容:
public ActionResult GetRpt(string pNum)
{
string dirPath = "C:\\Folder1";
string pvtResult = GetType1Report(pNum);
}
private string GetType1Reportt(string paslNum)
{
string dPath = dirPath;
}
我需要从 GetType1Report 中访问 dirPath。
我收到一条消息,指出 GetPReport 中不存在 dirPath。
从 withing GetPReport 访问 dirPath 的最佳方法是什么?我正在考虑将其作为公共静态,但不确定这是否是最好的方法。