ResXResourceSetGetAliasEnumerator Method

Returns an IDictionaryEnumerator that can iterate through the aliases of the ResXResourceSet.

Definition

Namespace: KGySoft.Resources
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public IDictionaryEnumerator GetAliasEnumerator()

Return Value

IDictionaryEnumerator
An IDictionaryEnumerator for the aliases of this ResXResourceSet.

Implements

IExpandoResourceSetGetAliasEnumerator

Remarks

The returned enumerator iterates through the assembly aliases of the ResXResourceSet. To obtain a specific alias value by assembly name, use the GetAliasValue method. To obtain an enumerator for the resources use the GetEnumerator method instead.

The IDictionaryEnumerator.Value property of the returned enumerator is always a String regardless of the value of the SafeMode property.

The IDictionaryEnumerator.Key property of the returned enumerator is the alias name, whereas IDictionaryEnumerator.Value is the corresponding assembly name.

See Also