我在一個工具類呼叫實用工具類的函數
namespace GUI.code
{
public class Utility
{
public string GetFileName(string grpID)
{
string filenameUNC = "\\\\" + "localhost" + "\\AgentShare\\";
string realPath = GetPath(filenameUNC);
return realPath;
}
}
}
現在我從另一個調用頁面此功能在項目中像這樣有一個函數:
new utility.GetCSFileName(ID);
爲什麼我需要添加新的,我爲什麼不能這樣稱呼它
GetCSFileName(ID);
當我有
using GUI.code;
在頂部
如果刪除新我得到這個錯誤
錯誤1的對象引用是所必需的非靜態字段,方法或屬性「copiunGUI.code.GUIUtility。 GetCSFileName(串)
任何建議