Gets the available values from provided enum types.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static Dictionary<int, string> GetValues(
	List<Type> types
)
Visual Basic
Public Shared Function GetValues ( 
	types As List(Of Type)
) As Dictionary(Of Integer, String)
Visual C++
public:
static Dictionary<int, String^>^ GetValues(
	List<Type^>^ types
)
F#
static member GetValues : 
        types : List<Type> -> Dictionary<int, string> 

Parameters

types
Type: System.Collections.Generic..::..List<(Of <(<'Type>)>)>
Enum types

Return Value

Type: Dictionary<(Of <(<'Int32, String>)>)>
Available values

See Also