This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <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> |