Castle.MonoRail.Framework.Helpers.FormHelper.EnumValueGetter.GetValue C# (CSharp) Method

GetValue() public method

Gets the value.
public GetValue ( object instance ) : object
instance object The instance.
return object
			public override object GetValue(object instance)
			{
				return Enum.Format(enumType, Enum.Parse(enumType, Convert.ToString(instance)), "d");
			}
		}
FormHelper.EnumValueGetter