SharpVectors.Dom.Stylesheets.MediaList.this C# (CSharp) Method

this() public method

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
return string
        public string this[ulong index]
        {
            get
            {
                return (index < Length) ? (string)medias[(int)index] : null;
            }
        }