Mono.Cecil.Fluent.CecilExtensions.IsIndexer C# (CSharp) Method

IsIndexer() public static method

public static IsIndexer ( this property ) : bool
property this
return bool
		public static bool IsIndexer(this PropertyDefinition property)
		{
			CustomAttribute attr;
			return property.IsIndexer(out attr);
		}

Same methods

CecilExtensions::IsIndexer ( this property, CustomAttribute &defaultMemberAttribute ) : bool