Object.lua.txt 797 B

123456789101112131415161718192021222324252627282930313233
  1. -- Generated by CSharp.lua Compiler
  2. local System = System
  3. local ETRuntime = ETRuntime
  4. System.namespace("ET", function (namespace)
  5. namespace.class("Object", function (namespace)
  6. local BeginInit, EndInit, Dispose, ToString, __ctor__
  7. __ctor__ = function (this)
  8. end
  9. BeginInit = function (this)
  10. end
  11. EndInit = function (this)
  12. end
  13. Dispose = function (this)
  14. end
  15. ToString = function (this)
  16. return json.encode(this)
  17. end
  18. return {
  19. base = function (out)
  20. return {
  21. System.Object,
  22. System.ComponentModel.ISupportInitialize,
  23. System.IDisposable
  24. }
  25. end,
  26. BeginInit = BeginInit,
  27. EndInit = EndInit,
  28. Dispose = Dispose,
  29. ToString = ToString,
  30. __ctor__ = __ctor__
  31. }
  32. end)
  33. end)