VSNDK.DebugEngine.VariableInfo.VariableInfo C# (CSharp) Method

VariableInfo() public method

Constructor for Variable Info Object without inquiring for the variable's children.
public VariableInfo ( string name, string type, string value, string GDBName ) : System
name string The name of the variable.
type string The data type of the variable.
value string The value of the variable.
GDBName string The GDB Name of the variable.
return System
        public VariableInfo(string name, string type, string value, string GDBName)
        {
            _name = name;
            _type = type;
            _value = value;
            _children = null;
            _GDBName = GDBName;
        }

Same methods

VariableInfo::VariableInfo ( string name, string type, string baseType, string value, EventDispatcher dispatcher, ArrayList GDBNames, ArrayList VSNames ) : System