Blaze.Server.TdfList.TdfList C# (CSharp) Method

TdfList() public method

public TdfList ( string label, TdfBaseType listType, ArrayList list, bool stub = false ) : System
label string
listType TdfBaseType
list System.Collections.ArrayList
stub bool
return System
        public TdfList(string label, TdfBaseType listType, ArrayList list, bool stub = false)
        {
            this.Label = label;
            this.Type = TdfBaseType.List;

            this.ListType = listType;
            this.List = list;

            this.Stub = stub;
        }
    }
TdfList