X Tutup
using System; using System.Reflection; namespace Python.Runtime { /// /// Module level properties (attributes) /// internal class ModulePropertyObject : ExtensionType { public ModulePropertyObject(PropertyInfo md) { throw new NotImplementedException("ModulePropertyObject"); } } }
X Tutup