System::EnumValues::GetValueOf method

EnumValues::GetValueOf(const String&, bool) const method

Returns boxed value of the enum constant with the specified name.

virtual SharedPtr<Object> System::EnumValues<E, Guard>::GetValueOf(const String &str, bool ignoreCase) const override
ParameterTypeDescription
strconst String&The name of the enum constant
ignoreCaseboolSpecifeis if the case should be ignored when interpreting the name of the enum constant

ReturnValue

A boxed value of the enum constant whose name is specified in str.

See Also

EnumValues::GetValueOf(long) const method

Returns boxed value of the enum constant with the specified value.

virtual SharedPtr<Object> System::EnumValues<E, Guard>::GetValueOf(long val) const override
ParameterTypeDescription
vallongThe value of the enum constant

ReturnValue

A boxed value of the enum constant whose vakye is specified in str.

See Also