Table of Contents

Delegate RefOutFunc<T1, T2, T3, R>

Namespace
CarinaStudio
Assembly
CarinaStudio.AppBase.Core.dll

Function to return a reference to variable.

public delegate ref R RefOutFunc<in T1, in T2, in T3, R>(T1 arg1, T2 arg2, T3 arg3)

Parameters

arg1 T1

1st argument.

arg2 T2

2nd argument.

arg3 T3

3rd argument.

Returns

R

Reference to variable.

Type Parameters

T1

Type of 1st argument.

T2

Type of 2nd argument.

T3

Type of 3rd argument.

R

Type of returned type of reference.

Extension Methods