| 123456789101112131415161718192021222324252627282930313233 |
- -- Generated by CSharp.lua Compiler
- local System = System
- local ETRuntime = ETRuntime
- System.namespace("ET", function (namespace)
- namespace.class("Object", function (namespace)
- local BeginInit, EndInit, Dispose, ToString, __ctor__
- __ctor__ = function (this)
- end
- BeginInit = function (this)
- end
- EndInit = function (this)
- end
- Dispose = function (this)
- end
- ToString = function (this)
- return json.encode(this)
- end
- return {
- base = function (out)
- return {
- System.Object,
- System.ComponentModel.ISupportInitialize,
- System.IDisposable
- }
- end,
- BeginInit = BeginInit,
- EndInit = EndInit,
- Dispose = Dispose,
- ToString = ToString,
- __ctor__ = __ctor__
- }
- end)
- end)
|