namespace XGame.Framework.Asyncs { public class ResultAsync : Async, IResultAsync { public TResult Result { get; set; } public TResult GetResult() { return Result; } } }