| AsyncInitArgsCreateTArg1, TArg2 Method (TArg1, TArg2) |
Namespace:
Ditto.AsyncInit.Services
Assembly:
Ditto.AsyncInit.Services (in Ditto.AsyncInit.Services.dll) Version: 1.5.0.2468
Syntax public static AsyncInitArgs Create<TArg1, TArg2>(
TArg1 arg1,
TArg2 arg2
)
Public Shared Function Create(Of TArg1, TArg2) (
arg1 As TArg1,
arg2 As TArg2
) As AsyncInitArgs
public:
generic<typename TArg1, typename TArg2>
static AsyncInitArgs^ Create(
TArg1 arg1,
TArg2 arg2
)
static member Create :
arg1 : 'TArg1 *
arg2 : 'TArg2 -> AsyncInitArgs
Parameters
- arg1
- Type: TArg1
The first argument. - arg2
- Type: TArg2
The second argument.
Type Parameters
- TArg1
- The type of the first argument.
- TArg2
- The type of the second argument.
Return Value
Type:
AsyncInitArgsAn instance of
AsyncInitArgs.
See Also