ICSharpHelper.Identifier 메서드

정의

오버로드

Identifier(String, ICollection<String>)

scope 고유한 지정된 문자열에서 유효한 C# 식별자를 생성합니다.

Identifier(String, ICollection<String>, Nullable<Boolean>)

scope 고유한 지정된 문자열에서 유효한 C# 식별자를 생성합니다.

Identifier(String, ICollection<String>)

scope 고유한 지정된 문자열에서 유효한 C# 식별자를 생성합니다.

public string Identifier (string name, System.Collections.Generic.ICollection<string> scope = default);
abstract member Identifier : string * System.Collections.Generic.ICollection<string> -> string
Public Function Identifier (name As String, Optional scope As ICollection(Of String) = Nothing) As String

매개 변수

name
String

기본 식별자 이름입니다.

scope
ICollection<String>

scope 식별자 목록입니다.

반환

식별자입니다.

적용 대상

Identifier(String, ICollection<String>, Nullable<Boolean>)

scope 고유한 지정된 문자열에서 유효한 C# 식별자를 생성합니다.

public string Identifier (string name, System.Collections.Generic.ICollection<string>? scope = default, bool? capitalize = default);
abstract member Identifier : string * System.Collections.Generic.ICollection<string> * Nullable<bool> -> string
Public Function Identifier (name As String, Optional scope As ICollection(Of String) = Nothing, Optional capitalize As Nullable(Of Boolean) = Nothing) As String

매개 변수

name
String

기본 식별자 이름입니다.

scope
ICollection<String>

scope 식별자 목록입니다.

capitalize
Nullable<Boolean>

true 첫 글자를 대문자로 변환해야 하면 이고, false 첫 글자를 소문자로 변환해야 하면 이고,

반환

식별자입니다.

적용 대상