Add Mono.Runtime::GetNativeStackTrace method to make the new backtracing facility...
[mono-project.git] / mcs / tests / gtest-linq-22.cs
blob05a9fb081f90de3ac1501373b550a4913a2615c4
1 using System;
2 using System.Linq;
4 namespace Test
6 class MainClass
8 public static void Main ()
10 DateTime junk;
11 var results = from item in "abcd"
12 let parsed = DateTime.TryParse ("today", out junk)
13 select parsed ? junk : DateTime.Now;