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