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

DictionaryEntry() public method

public DictionaryEntry ( Object key, Object value ) : System
key Object
value Object
return System
        public DictionaryEntry(Object key, Object value) {
            _key = key;
            _value = value;
        }
DictionaryEntry