PERWAPI.ClassRef.MakeExported C# (CSharp) Method

MakeExported() public method

Make this Class exported from an Assembly (ie. add to ExportedType table)
public MakeExported ( ) : void
return 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);
        }