Attribute.Attribute C# (CSharp) Method

Attribute() public method

public Attribute ( string name, string value ) : System
name string
value string
return System
    public Attribute(string name, string value)
    {
        this.name = name;
        this.value = value;
    }

Same methods

Attribute::Attribute ( ) : System
Attribute::Attribute ( string name ) : System
Attribute