Monobjc.ObjectiveCCategoryAttribute.ObjectiveCCategoryAttribute C# (CSharp) Method

ObjectiveCCategoryAttribute() public method

Initializes a new instance of the ObjectiveCCategoryAttribute class.
The name MUST be an ANSI identifier.
public ObjectiveCCategoryAttribute ( String name ) : System
name String The name of the class to use when appending the category in the Objective-C runtime.
return System
		public ObjectiveCCategoryAttribute (String name)
		{
			this.Name = name;

            // A category will typically extend a native class so set the default to true.
            this.IsNative = true;
		}
ObjectiveCCategoryAttribute