ResXFileRef 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 ResXFileRef 類別的新執行個體。
多載
ResXFileRef(String, String) |
建立 ResXFileRef 類別的新執行個體,這個執行個體參考指定的檔案。 |
ResXFileRef(String, String, Encoding) |
初始化 ResXFileRef 類別的新執行個體,這個類別會參考指定的檔案。 |
ResXFileRef(String, String)
建立 ResXFileRef 類別的新執行個體,這個執行個體參考指定的檔案。
public:
ResXFileRef(System::String ^ fileName, System::String ^ typeName);
public ResXFileRef (string fileName, string typeName);
new System.Resources.ResXFileRef : string * string -> System.Resources.ResXFileRef
Public Sub New (fileName As String, typeName As String)
參數
- fileName
- String
要參考的檔案。
- typeName
- String
參考的資源型別。
例外狀況
fileName
或 typeName
為 null
。
備註
參數所 typeName
參考的類型必須支援接受 Stream 物件做為參數的公用建構函式。
適用於
ResXFileRef(String, String, Encoding)
初始化 ResXFileRef 類別的新執行個體,這個類別會參考指定的檔案。
public:
ResXFileRef(System::String ^ fileName, System::String ^ typeName, System::Text::Encoding ^ textFileEncoding);
public ResXFileRef (string fileName, string typeName, System.Text.Encoding textFileEncoding);
new System.Resources.ResXFileRef : string * string * System.Text.Encoding -> System.Resources.ResXFileRef
Public Sub New (fileName As String, typeName As String, textFileEncoding As Encoding)
參數
- fileName
- String
要參考的檔案。
- typeName
- String
參考的資源型別名稱。
- textFileEncoding
- Encoding
參考檔中使用的編碼方式。
備註
參數所 typeName
參考的類型必須支援接受 Stream 物件做為參數的公用建構函式。