-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_EnumValues_IsDefined_1
Andrew Koryavchenko edited this page Jun 17, 2018
·
1 revision
Determines whether the specified enum name is defined.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public bool IsDefined(
string name,
bool ignoreCase
)
VB
Public Function IsDefined (
name As String,
ignoreCase As Boolean
) As Boolean
F#
member IsDefined :
name : string *
ignoreCase : bool -> bool
- name
- Type: System.String
The name to check. - ignoreCase
- Type: System.Boolean
if set totrue
the casing will be ignored.
Type: Booleantrue
if the specified enum name is defined; otherwise, false
.