LitDev.Property.Property C# (CSharp) Method

Property() public method

public Property ( string _key, string _value, Object _obj, Property _parent ) : System
_key string
_value string
_obj Object
_parent Property
return System
        public Property(string _key, string _value, Object _obj, Property _parent)
        {
            key = _key;
            value = _value;
            obj = _obj;
            parent = _parent;
        }
Property