1234567891011121314151617181920 |
- using Jint.Native;
- using Jint.Runtime.Interop;
- namespace Jint.Tests.Runtime.Converters
- {
- public class EnumsToStringConverter : IObjectConverter
- {
- public bool TryConvert(Engine engine, object value, out JsValue result)
- {
- if (value is Enum)
- {
- result = value.ToString();
- return true;
- }
- result = JsValue.Null;
- return false;
- }
- }
- }
|