EndsWithString 建構函式
初始化 EndsWithString 類別的新執行個體。
命名空間: Microsoft.Activities.Expressions
組件: Microsoft.Activities (在 Microsoft.Activities.dll 中)
多載清單
名稱 | 描述 | |
---|---|---|
EndsWithString() | 初始化 EndsWithString 類別的新執行個體。 |
|
EndsWithString(InArgument<String>, InArgument<String>) | 初始化 EndsWithString 類別的新執行個體。 |
|
EndsWithString(InArgument<String>, InArgument<String>, Boolean) | 初始化 EndsWithString 類別的新執行個體。 |
請參閱
EndsWithString 類別
Microsoft.Activities.Expressions 命名空間
回到頁首
EndsWithString 建構函式 ()
初始化 EndsWithString 類別的新執行個體。
語法
public EndsWithString()
public:
EndsWithString()
new : unit -> EndsWithString
Public Sub New
回到頁首
EndsWithString 建構函式 (InArgument<String>, InArgument<String>)
初始化 EndsWithString 類別的新執行個體。
語法
public EndsWithString(
InArgument<string> input,
InArgument<string> searchValue
)
public:
EndsWithString(
InArgument<String^>^ input,
InArgument<String^>^ searchValue
)
new :
input:InArgument<string> *
searchValue:InArgument<string> -> EndsWithString
Public Sub New (
input As InArgument(Of String),
searchValue As InArgument(Of String)
)
參數
input
Type: System.Activities.InArgument<String>輸入字串。
searchValue
Type: System.Activities.InArgument<String>目標搜尋字串。
回到頁首
EndsWithString 建構函式 (InArgument<String>, InArgument<String>, Boolean)
初始化 EndsWithString 類別的新執行個體。
語法
public EndsWithString(
InArgument<string> input,
InArgument<string> searchValue,
bool ignoreCase
)
public:
EndsWithString(
InArgument<String^>^ input,
InArgument<String^>^ searchValue,
bool ignoreCase
)
new :
input:InArgument<string> *
searchValue:InArgument<string> *
ignoreCase:bool -> EndsWithString
Public Sub New (
input As InArgument(Of String),
searchValue As InArgument(Of String),
ignoreCase As Boolean
)
參數
input
Type: System.Activities.InArgument<String>輸入字串。
searchValue
Type: System.Activities.InArgument<String>目標搜尋字串。
ignoreCase
Type: System.Boolean比較時大小寫是否重要。
回到頁首