ExceptUtilTryXxxFuncTr Delegate
Delegates to represent TryWhatever functions.
Namespace: Karamba.UtilitiesAssembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
public delegate bool TryXxxFunc<Tr>(
out Tr res
)
Public Delegate Function TryXxxFunc(Of Tr) (
<OutAttribute> ByRef res As Tr
) As Boolean
generic<typename Tr>
public delegate bool TryXxxFunc(
[OutAttribute] Tr% res
)
type TryXxxFunc =
delegate of
res : 'Tr byref -> bool
- res Tr
- result variable.
- Tr
- result type.
Booleanthe represented functions returns bool.