Table of Contents

Delegate RefOutFunc<T1, T2, R>

Namespace
CarinaStudio
Assembly
CarinaStudio.AppBase.Core.dll

Function to return a reference to variable.

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

Parameters

arg1 T1

1st argument.

arg2 T2

2nd argument.

Returns

R

Reference to variable.

Type Parameters

T1

Type of 1st argument.

T2

Type of 2nd argument.

R

Type of returned type of reference.

Extension Methods