Я вступаю в C # і у мене виникає таке питання:
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;
}
}
}
}
Я маю цей код на UserControl:
using MyDataLayer.Section1;
public class MyClass
{
protected void MyMethod
{
MyClass.MyItem oItem = new MyClass.MyItem();
oItem = MyClass.GetItem();
someLiteral.Text = oItem.Property1;
}
}
Все працює добре, крім випадків, коли я йду на доступ Property1
. IntelliSense тільки дає мені « , і » в якості опції. Коли я клацну мишкою на , Visual Studio дає мені таке пояснення: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
Я не впевнений, що це означає, я зробив якийсь гугл, але не зміг це зрозуміти.