我有以下幾點:訪問變量
public ActionResult GetRpt(string pNum)
{
string dirPath = "C:\\Folder1";
string pvtResult = GetType1Report(pNum);
}
private string GetType1Reportt(string paslNum)
{
string dPath = dirPath;
}
我需要從內GetType1Report訪問dirPath。
我得到一個消息,dirPath不存在於GetPReport中。
使用GetPReport訪問dirPath的最佳方式是什麼?我正在考慮將此視爲公共靜態,但不確定這是否是最好的方式。
是什麼?GetPReport –