Share via


TryParse<TInput,TOutput> 代理人

定義

入力の解析を試みます。

public delegate bool TryParse<TInput,TOutput>(TInput input, bool ignoreCase, out TOutput output);
type TryParse<'Input, 'Output> = delegate of 'Input * bool * 'Output -> bool
Public Delegate Function TryParse(Of TInput, TOutput)(input As TInput, ignoreCase As Boolean, ByRef output As TOutput) As Boolean 

型パラメーター

TInput

入力の種類の解析。

TOutput

解析された出力の種類。

パラメーター

input
TInput

解析する入力オブジェクト。

ignoreCase
Boolean

大文字と小文字を区別しない天気を指定します。

output
TOutput

解析された出力オブジェクト。

戻り値

解析が成功した場合は True、それ以外の場合は false を返します。

適用対象