ResourceWriter.AddResource メソッド
リソースを書き込むリソースのリストに追加します。
オーバーロードの一覧
バイト配列として指定された名前付きリソースを書き込むリソースのリストに追加します。
[Visual Basic] Overloads Public Overridable Sub AddResource(String, Byte()) Implements IResourceWriter.AddResource
[C++] public: virtual void AddResource(String*, unsigned char __gc[]);
オブジェクトとして指定された名前付きリソースを書き込むリソースのリストに追加します。
[Visual Basic] Overloads Public Overridable Sub AddResource(String, Object) Implements IResourceWriter.AddResource
String リソースを書き込むリソースのリストに追加します。
[Visual Basic] Overloads Public Overridable Sub AddResource(String, String) Implements IResourceWriter.AddResource
使用例
[Visual Basic, C#, C++] メモ ここでは、AddResource のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
Imports System
Imports System.Resources
Imports System.IO
Public Class WriteResources
Public Shared Sub Main(args() As String)
' Create a file stream to encapsulate items.resources.
Dim fs As New FileStream("items.resources", _
FileMode.OpenOrCreate, FileAccess.Write)
' Open a resource writer to write from the stream.
Dim writer = New ResourceWriter(fs)
' Add resources to the resource writer.
writer.AddResource("String 1", "First String")
writer.AddResource("String 2", "Second String")
writer.AddResource("String 3", "Third String")
' Write the resources to the stream, and close it.
writer.Close()
End Sub
End Class
[C#]
using System;
using System.Resources;
using System.IO;
public class WriteResources
{
public static void Main(string[] args)
{
// Create a file stream to encapsulate items.resources.
FileStream fs = new FileStream("items.resources",
FileMode.OpenOrCreate,FileAccess.Write);
// Open a resource writer to write from the stream.
IResourceWriter writer = new ResourceWriter(fs);
// Add resources to the resource writer.
writer.AddResource("String 1", "First String");
writer.AddResource("String 2", "Second String");
writer.AddResource("String 3", "Third String");
// Write the resources to the stream, and close it.
writer.Close();
}
}
[C++]
#using <mscorlib.dll>
using namespace System;
using namespace System::Resources;
using namespace System::IO;
int main() {
// Create a file stream to encapsulate items.resources.
FileStream* fs = new FileStream(S"items.resources",
FileMode::OpenOrCreate, FileAccess::Write);
// Open a resource writer to write from the stream.
IResourceWriter* writer = new ResourceWriter(fs);
// Add resources to the resource writer.
writer->AddResource(S"String 1", S"First String");
writer->AddResource(S"String 2", S"Second String");
writer->AddResource(S"String 3", S"Third String");
// Write the resources to the stream, and close it.
writer->Close();
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
参照
ResourceWriter クラス | ResourceWriter メンバ | System.Resources 名前空間