Пример #1
0
        public ScriptExportMonoDelegate(TypeDefinition @delegate)
        {
            if (@delegate == null)
            {
                throw new ArgumentNullException(nameof(@delegate));
            }
            if (!IsDelegate(@delegate))
            {
                throw new Exception("Type isn't delegate");
            }

            Type = @delegate;

            NestedName = ScriptExportMonoType.GetNestedName(Type);
            Module     = ScriptExportMonoType.GetModuleName(Type);
            FullName   = ScriptExportMonoType.GetFullName(Type, Module);
        }
Пример #2
0
        public ScriptExportMonoEnum(TypeReference @enum)
        {
            if (@enum == null)
            {
                throw new ArgumentNullException(nameof(@enum));
            }

            Type = @enum;
            if (@enum.Module != null)
            {
                Definition = @enum.Resolve();
            }

            NestedName      = ScriptExportMonoType.GetNestedName(Type);
            CleanNestedName = ScriptExportMonoType.ToCleanName(NestedName);
            Module          = ScriptExportMonoType.GetModuleName(Type);
            FullName        = ScriptExportMonoType.GetFullName(Type, Module);
        }
Пример #3
0
        public ScriptExportMonoArray(TypeReference type)
        {
            if (type == null)
            {
                throw new ArgumentNullException(nameof(type));
            }
            if (!type.IsArray)
            {
                throw new Exception("Type isn't an array");
            }

            Type = type;

            TypeName   = ScriptExportMonoType.GetName(Type);
            NestedName = ScriptExportMonoType.GetNestedName(Type, TypeName);
            Module     = ScriptExportMonoType.GetModuleName(Type);
            FullName   = ScriptExportMonoType.GetFullName(Type, Module);
        }
Пример #4
0
        public ScriptExportMonoGeneric(TypeReference type)
        {
            if (type == null)
            {
                throw new ArgumentNullException(nameof(type));
            }
            if (!type.IsGenericInstance)
            {
                throw new Exception("Type isn't generic");
            }

            Type = (GenericInstanceType)type;

            TypeName   = ScriptExportMonoType.GetName(Type);
            NestedName = ScriptExportMonoType.GetNestedName(Type, TypeName);
            Module     = ScriptExportMonoType.GetModuleName(Type);
            FullName   = ScriptExportMonoType.GetFullName(Type, Module);
        }