成员 '<成员名称>'不能通过实例引用访问 [英] Member &#39;&lt;member name&gt;&#39; cannot be accessed with an instance reference

查看:34
本文介绍了成员 '<成员名称>'不能通过实例引用访问的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 C#,但遇到了这个问题:

I am getting into C# and I am having this issue:

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 上有这个代码:

I have this code on a UserControl:

using MyDataLayer.Section1;

public class MyClass
{
    protected void MyMethod
    {
        MyClass.MyItem oItem = new MyClass.MyItem();
        oItem = MyClass.GetItem();
        someLiteral.Text = oItem.Property1;
    }
}

一切正常,除非我去访问 Property1.智能感知只给我EqualsGetHashCodeGetTypeToString"作为选项.当我将鼠标悬停在 oItem.Property1 上时,Visual Studio 会给出以下解释:

Everything works fine, except when I go to access Property1. The intellisense only gives me "Equals, GetHashCode, GetType, and ToString" as options. When I mouse over the oItem.Property1, Visual Studio gives me this explanation:

MemberMyDataLayer.Section1.MyClass.MyItem.Property1.get不能用实例引用访问,用类型名来代替

MemberMyDataLayer.Section1.MyClass.MyItem.Property1.getcannot be accessed with an instance reference, qualify it with a type name instead

我不确定这意味着什么,我进行了一些谷歌搜索,但无法弄清楚.

I am unsure of what this means, I did some googling but wasn't able to figure it out.

推荐答案

在 C# 中,与 VB.NET 和 Java 不同,您不能使用实例语法访问 static 成员.你应该这样做:

In C#, unlike VB.NET and Java, you can't access static members with instance syntax. You should do:

MyClass.MyItem.Property1

引用该属性或从 Property1 中删除 static 修饰符(这可能是您想要做的).有关static 是,请参阅我的其他答案.

to refer to that property or remove the static modifier from Property1 (which is what you probably want to do). For a conceptual idea about what static is, see my other answer.

这篇关于成员 '<成员名称>'不能通过实例引用访问的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆