Skip to content

Instantly share code, notes, and snippets.

@SuicSoft
SuicSoft / AsyncRef.cs
Last active November 9, 2015 08:00
Async ref arguments c#
/// <summary>
/// Ref for async methods or tasks
/// </summary>
/// <typeparam name="T">The return or set type</typeparam>
public class AsyncRef<T>
{
/// <summary>
/// Initailizes the AsyncRef
/// </summary>
/// <param name="get">The getter</param>