5 references to ContinueWith
Microsoft.CodeAnalysis.CSharp.Scripting.Desktop.UnitTests (2)
InteractiveSessionReferencesTests.cs (2)
174var state = await script.RunAsync().ContinueWith<IEnumerable<int>>("x", options.WithFilePath(null)); 455var s1 = s0.ContinueWith<Type>("System.Type.GetType(x.GetType().AssemblyQualifiedName, true)");
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (3)
InteractiveSessionTests.cs (3)
908ContinueWith<Func<int, int>>("new Func<int,int>(Sqr)").Result.ReturnValue; 990ContinueWith<List<int>>("result").Result.ReturnValue; 1537var s2 = s1.ContinueWith<int>("int x = 20;");