System.Collections.KeyValuePairs.KeyValuePairs C# (CSharp) 메소드

KeyValuePairs() 공개 메소드

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