PERWAPI.ClassRef.MakeExported C# (CSharp) Méthode

MakeExported() public méthode

Make this Class exported from an Assembly (ie. add to ExportedType table)
public MakeExported ( ) : void
Résultat void
        public void MakeExported()
        {
            if ((scope == null) || (!(scope is ModuleRef)))
                throw new Exception("Module not set for class to be exported");
            ((ModuleRef)scope).AddToExportedClassList(this);
        }