newtelligence.DasBlog.Web.Core.ValidTagCollection.this C# (CSharp) Method

this() public method

public this ( int index ) : ValidTag
index int
return ValidTag
        public ValidTag this[int index]
        {
            get{
                return (ValidTag) tags.GetByIndex(index);
            }
            set{
                tags.SetByIndex(index, value);
            }
        }

Same methods

ValidTagCollection::this ( string tagName ) : ValidTag