-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_EnumValues_GetByName_1
Andrew Koryavchenko edited this page Jun 17, 2018
·
1 revision
Tries to get enum field by its name.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public EnumValue GetByName(
string name,
bool ignoreCase
)
VB
Public Function GetByName (
name As String,
ignoreCase As Boolean
) As EnumValue
F#
member GetByName :
name : string *
ignoreCase : bool -> EnumValue
- name
- Type: System.String
Name of the enum field. - ignoreCase
- Type: System.Boolean
if set totrue
the casing will be ignored.
Type: EnumValue
Enum field with matching name.