This documentation is archived and is not being maintained.
ResourceSet::Close Method
Visual Studio 2010
Closes and releases any resources used by this ResourceSet.
Assembly: mscorlib (in mscorlib.dll)
All calls to methods on the ResourceSet after a call to this method might fail.
Close can be safely called multiple times.
Note |
|---|
The current implementation of Close calls Dispose (true). |
The following code example uses the Close method to release all resources used by the calling ResourceSet instance.
using namespace System; using namespace System::Resources; using namespace System::Collections; int main() { // Create a ResourceSet for the file items.resources. ResourceSet^ rs = gcnew ResourceSet( "items.resources" ); // Create an IDictionaryEnumerator* to read the data in the ResourceSet. IDictionaryEnumerator^ id = rs->GetEnumerator(); // Iterate through the ResourceSet and display the contents to the console. while ( id->MoveNext() ) Console::WriteLine( "\n [{0}] \t {1}", id->Key, id->Value ); rs->Close(); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
Note