-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_EnumValues_IsDefined
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
)
VB
Public Function IsDefined (
name As String
) As Boolean
F#
member IsDefined :
name : string -> bool
- name
- Type: System.String
The name to check.
Type: Booleantrue
if the specified enum name is defined; otherwise, false
.