System.ComponentModel.DebugTypeDescriptor.Refresh C# (CSharp) Method

Refresh() public static method

public static Refresh ( Assembly assembly ) : void
assembly System.Reflection.Assembly
return void
        public static void Refresh(Assembly assembly) {

            if (assembly == null) {
                return;
            }
            
            foreach (Module mod in assembly.GetModules()) {
                Refresh(mod);
            }
        }

Same methods

DebugTypeDescriptor::Refresh ( Module module ) : void
DebugTypeDescriptor::Refresh ( Type type ) : void
DebugTypeDescriptor::Refresh ( object component ) : void