Undefined.cs 201 B

12345678
  1. namespace Jint.Native
  2. {
  3. public static class Undefined
  4. {
  5. public readonly static JsValue Instance = JsValue.Undefined;
  6. public readonly static string Text = "undefined";
  7. }
  8. }