CharacterMappingDictionary MethodsCharacterMappingDictionary MethodsCharacterMappingDictionary Methods

Methods

 MethodDescription
Public methodAdd (char, string)Add (Char, String)Add (char, String^) Adds a mapping from a character to a string.
Public methodAdd (int, string)Add (Integer, String)Add (int, String^) Adds a mapping from a Unicode codepoint to a string.
Public methodClearClearClear Removes all character mappings from the collection.
Public methodContainsKey (char)ContainsKey (Char)ContainsKey (char) Returns a value indicating whether the CharacterMappingDictionaryCharacterMappingDictionaryCharacterMappingDictionary contains a mapping for the character specified by key.
Public methodContainsKey (int)ContainsKey (Integer)ContainsKey (int) Returns a value indicating whether the CharacterMappingDictionaryCharacterMappingDictionaryCharacterMappingDictionary contains a mapping for the given Unicode codepoint.
Public methodObject.EqualsObject.EqualsObject::EqualsDetermines whether the specified object is equal to the current object.(Inherited from System.ObjectSystem.ObjectSystem::Object)
Protected methodObject.FinalizeObject.FinalizeObject::FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from System.ObjectSystem.ObjectSystem::Object)
Public methodGetEnumeratorGetEnumeratorGetEnumerator Returns an enumerator that iterates through the character mapping.
Public methodObject.GetHashCodeObject.GetHashCodeObject::GetHashCodeServes as the default hash function. (Inherited from System.ObjectSystem.ObjectSystem::Object)
Public methodObject.GetTypeObject.GetTypeObject::GetTypeGets the TypeTypeType of the current instance.(Inherited from System.ObjectSystem.ObjectSystem::Object)
Protected methodObject.MemberwiseCloneObject.MemberwiseCloneObject::MemberwiseCloneCreates a shallow copy of the current objectObjectobject.(Inherited from System.ObjectSystem.ObjectSystem::Object)
Public methodRemove (char)Remove (Char)Remove (char) Removes the mapping of the specified character.
Public methodRemove (int)Remove (Integer)Remove (int) Removes the mapping of the specified Unicode codepoint.
Public methodObject.ToStringObject.ToStringObject::ToStringReturns a string that represents the current object.(Inherited from System.ObjectSystem.ObjectSystem::Object)
Public methodTryGetValue (char, out string)TryGetValue (Char, ByRef String)TryGetValue (char, String^%) Gets the string to which key is mapped if such a mapping exists.
Public methodTryGetValue (int, out string)TryGetValue (Integer, ByRef String)TryGetValue (int, String^%) Gets the string to which a given Unicode codepoint is mapped if such a mapping exists.

Top