NAnt.NUnit2.Types.CategoryCollection.this C# (CSharp) Method

this() private method

private this ( string value ) : Category
value string
return Category
        public Category this[string value]
        {
            get {
                if (value != null) {
                    // Try to locate instance using Value
                    foreach (Category category in base.List) {
                        if (value.Equals(category.CategoryName)) {
                            return category;
                        }
                    }
                }
                return null;
            }
        }

Same methods

CategoryCollection::this ( int index ) : Category