标题:这段代码编译时说接口不能包含字段 那接口该如何定义
取消只看楼主
狂牛
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2011-11-5
 问题点数:0 回复次数:0 
这段代码编译时说接口不能包含字段 那接口该如何定义
public class aaa
    {
        static void Main(string[] args)
        {
            IA ia = new A();
            A[0] = 1;
            Console.Read();
        }
    }
    public interface IA
    {
        private int[] value;
        string this[int index]
        {
            get
            {
                return values[index];
            }
            set
            {
                values[index] = value;
            }
        }
    }
    public class A : IA
    {
        private int[] values;
        string this[int index]
        {
            get
            {
                return values[index];
            }
            set
            {
                values[index] = value;
            }
        }
        public A()
        {
            valuses = new int[10];
        }
    }
}
搜索更多相关主题的帖子: 接口 如何 interface private public 
2011-11-05 11:33



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-354349-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.049737 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved