Esmf.Model.Variable.Variable C# (CSharp) Method

Variable() public method

public Variable ( string name, Type dimensionTypes, Type dataType ) : System
name string
dimensionTypes System.Type
dataType System.Type
return System
        public Variable(string name, Type[] dimensionTypes, Type dataType)
        {
            // TODO: Complete member initialization
            this._name = name;
            this._dimensionTypes = dimensionTypes;
            this._dataType = dataType;
            this.StoreOutput = true;
        }