ICodeGenerator.CreateEscapedIdentifier(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
為指定值建立逸出識別項。
public:
System::String ^ CreateEscapedIdentifier(System::String ^ value);
public string CreateEscapedIdentifier (string value);
abstract member CreateEscapedIdentifier : string -> string
Public Function CreateEscapedIdentifier (value As String) As String
參數
- value
- String
要建立逸出識別項的字串。
傳回
值的逸出識別項。
備註
CreateEscapedIdentifier 測試標識元是否與保留或語言關鍵詞衝突,如果是,則會傳回具有特定語言逸出程式碼格式的對等名稱。 這稱為逸出標識碼。 逸出標識碼包含相同的 value
,但會新增逸出程式代碼格式,以區分標識碼與關鍵詞。 兩個實作範例前面 value
會有 “@” 或以 “[” 和 “]” 括住 value
的 。