J'entre en C # et j'ai ce problème:
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;
}
}
}
}
J'ai ce code sur un UserControl:
using MyDataLayer.Section1;
public class MyClass
{
protected void MyMethod
{
MyClass.MyItem oItem = new MyClass.MyItem();
oItem = MyClass.GetItem();
someLiteral.Text = oItem.Property1;
}
}
Tout fonctionne bien, sauf quand je vais accéder Property1
. Le IntelliSense ne me donne « , et » en option. Lorsque je passe la souris sur , Visual Studio me donne cette explication: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
Je ne sais pas ce que cela signifie, j'ai fait quelques recherches sur Google mais je n'ai pas pu le comprendre.