ResourceSet.Close メソッド
この ResourceSet が使用するすべてのリソースを閉じて解放します。
Public Overridable Sub Close()
[C#]
public virtual void Close();
[C++]
public: virtual void Close();
[JScript]
public function Close();
解説
このメソッドを呼び出した後で ResourceSet のメソッドを呼び出すと、すべて失敗する可能性があります。
Close は、複数回安全に呼び出すことができます。
メモ 現在の Close の実装では、 Dispose (true) を呼び出します。
使用例
Imports System
Imports System.Resources
Imports System.Collections
Imports Microsoft.VisualBasic
Class EnumerateResources
Public Shared Sub Main()
' Create a ResourceSet for the file items.resources.
Dim rs As New ResourceSet("items.resources")
' Create an IDictionaryEnumerator to read the data in the ResourceSet.
Dim id As IDictionaryEnumerator = rs.GetEnumerator()
' Iterate through the ResourceSet and display the contents to the console.
While id.MoveNext()
Console.WriteLine(ControlChars.NewLine + "[{0}] " + ControlChars.Tab + "{1}", id.Key, id.Value)
End While
rs.Close()
End Sub
End Class
[C#]
using System;
using System.Resources;
using System.Collections;
class EnumerateResources
{
public static void Main()
{
// Create a ResourceSet for the file items.resources.
ResourceSet rs = new 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();
}
}
[C++]
#using <mscorlib.dll>
using namespace System;
using namespace System::Resources;
using namespace System::Collections;
int main() {
// Create a ResourceSet for the file items.resources.
ResourceSet* rs = new ResourceSet(S"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(S"\n [{0}] \t {1}", id->Key, id->Value);
rs->Close();
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET