X Tutup
using System; using System.Reflection; using System.Runtime.InteropServices; namespace Python.Runtime { /// /// xxx /// internal interface IReflectedType { string PythonTypeName(); Type GetReflectedType(); } internal interface IReflectedClass : IReflectedType { bool IsException(); } internal interface IReflectedInterface : IReflectedType { } internal interface IReflectedArray : IReflectedType { } internal interface IReflectedGenericClass : IReflectedClass { } }
X Tutup