///<summary> ///Registers a component with the application and initializes it if the component is not ///already initialized. ///</summary> ///<param name="component">An instance of a type derived from the <see cref="T:Sys.Component" /> class to register with the client application.</param> public static void addComponent(Component component) { }
///<summary> ///Removes the object from the application and disposes the object if it is disposable. ///</summary> ///<param name="component">The component to remove.</param> public static void removeComponent(Component component) { }