SharpVectors.Dom.Stylesheets.MediaList.this C# (CSharp) 메소드

this() 공개 메소드

Returns the indexth in the list. If index is greater than or equal to the number of media in the list, this returns null.
public this ( ulong index ) : string
index ulong
리턴 string
        public string this[ulong index]
        {
            get
            {
                return (index < Length) ? (string)medias[(int)index] : null;
            }
        }