Tôi đang vào C # và tôi đang gặp vấn đề này:
namespace MyDataLayer
{
namespace Section1
{
public class MyClass
{
public class MyItem
{
public static string Property1{ get; set; }
}
public static MyItem GetItem()
{
MyItem theItem = new MyItem();
theItem.Property1 = "MyValue";
return theItem;
}
}
}
}
Tôi có mã này trên UserControl:
using MyDataLayer.Section1;
public class MyClass
{
protected void MyMethod
{
MyClass.MyItem oItem = new MyClass.MyItem();
oItem = MyClass.GetItem();
someLiteral.Text = oItem.Property1;
}
}
Tất cả mọi thứ hoạt động tốt, ngoại trừ khi tôi truy cập Property1
. IntelliSense chỉ mang lại cho tôi " , , và " như các tùy chọn. Khi tôi di chuột qua , Visual Studio cho tôi lời giải thích này:Equals
GetHashCode
GetType
ToString
oItem.Property1
Member
MyDataLayer.Section1.MyClass.MyItem.Property1.getcannot be accessed with an instance reference, qualify it with a type name instead
Tôi không chắc điều này có nghĩa là gì, tôi đã làm một số việc nhưng không thể hiểu được.