柚子Nan--回归原点

Everything can be as easy as you like or as complex as you need.
posts - 232, comments - 984, trackbacks - 17, articles - 29
  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理

2004年7月14日

真的是幸会啊,用了很久了,都不知道.net内部是什么?
    哪里有这些东西?
    public
interface IEnumerable

    {

        IEnumerator GetEnumerator();

    }

    public interface IEnumerator

    {

        object Current

        {

            get;

        }

        bool MoveNext();

        void Reset();

    }

    public interface ICollection:IEnumerator

    {

        int Count{get;  }

        object SyncRoot{get;}

        bool IsSynchronized{get;}

        void CopyTo(Array array,int index);

    }

    public interface IList:ICollection,IEnumerator

    {

        object this[int index]

        {

            get;

            set;

        }

        bool IsReadOnly

        {

            get;

        }

        bool IsFixedSize

        {

            get;

        }

        int Add(object value);

        bool Contains(object value);

        void Clear();

        int IndexOf(object value);

        void Insert(int index,object value);

        void Remove(object value);

        void RemoveAt(int index);

 

    }

 

posted @ 2004-07-14 21:46 柚子Nan 阅读(960) | 评论 (6)编辑

           真实和谎言一起到河边洗澡
           先上岸的谎言偷穿上真实的衣服不肯归还
           固执的真实也不肯穿上谎言的衣服
           只好一丝不挂光溜溜的回家
           从此人们眼中只有穿着真实外衣的谎言
           却怎么也无法接受赤裸裸的真实

posted @ 2004-07-14 14:16 柚子Nan 阅读(1491) | 评论 (7)编辑