System.Collections.ArrayList.Range.Range C# (CSharp) 메소드

Range() 개인적인 메소드

private Range ( ArrayList list, int index, int count ) : System.Security
list ArrayList
index int
count int
리턴 System.Security
            internal Range(ArrayList list, int index, int count) : base(false)
            {
                _baseList = list;
                _baseIndex = index;
                _baseSize = count;
                _baseVersion = list._version;
                // we also need to update _version field to make Range of Range work
                _version = list._version;
            }