System.Collections.KeyValuePairs.KeyValuePairs C# (CSharp) Method

KeyValuePairs() public method

public KeyValuePairs ( object key, object value ) : System.Diagnostics
key object
value object
return System.Diagnostics
        public KeyValuePairs(object key, object value) {
            this.value = value;
            this.key = key;
        }
KeyValuePairs