Accord.Controls.ArrayPropertyDescriptor.ArrayPropertyDescriptor C# (CSharp) Метод

ArrayPropertyDescriptor() публичный Метод

Constructs a new Array Property Descriptor.
public ArrayPropertyDescriptor ( string name, Type type, int index ) : System
name string A title for the array.
type System.Type The type of the property being displayed.
index int The index to display.
Результат System
        public ArrayPropertyDescriptor(string name, Type type, int index)
            : base(name, null)
        {
            this.name = name;
            this.type = type;
            this.columnIndex = index;
        }