ResourceMgr ResetAllResources Method CleanCode C# Libraries v1.2.03 API
Resets externalized file resources for all controls on a form.

Namespace: CleanCode.IO
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public static Collection<string> ResetAllResources(
	params Form[] forms
)

Parameters

forms
Type:  OnlineSystem.Windows.Forms Form 
The list of forms.

Return Value

A collection of filenames that were deleted.
Remarks

This will search for any controls (whether directly on the form or embedded within another control) that implement IResourceUser and call their ResetResources  method. That method will either recursively call this method (if the control includes its own forms) or the ResetResources(String, Boolean ) method to reset the control's own external resources.
See Also