Click or drag to resize
FastEnum Class
Provides cached implementations for some of the Enum methods.
Inheritance Hierarchy
SystemObject
  LawoFastEnum

Namespace: Lawo
Assembly: Lawo (in Lawo.dll) Version: 1.4.1707.27006
Syntax
C#
public static class FastEnum

The FastEnum type exposes the following members.

Methods
  NameDescription
Public methodStatic memberGetNameValueMapTEnum
Returns a dictionary that maps the string representation of each of the named constants of TEnum to its named constant.
Public methodStatic memberGetValueNameMapTEnum
Returns a dictionary that maps each of the named constants of TEnum to its string representation.
Public methodStatic memberIsDefinedTEnum
Provides a fast implementation of a part of the functionality of IsDefined(Type, Object).
Public methodStatic memberToEnumTEnum(Int64)
Provides a fast implementation of a part of the functionality of ToObject(Type, Object).
Public methodStatic memberToEnumTEnum(UInt64)
Provides a fast implementation of a part of the functionality of ToObject(Type, Object).
Public methodStatic memberToInt64TEnum
Returns the integer represented by value.
Public methodStatic memberToUInt64TEnum
Returns the integer represented by value.
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also