using System;
using System.Linq;
public class A
{
void foo()
{
var col = from a in new[] { 1, 2, 3 }
join b in new[] {4, 5, 6} on 1 equals 2 into x
select x{caret};
}
}
Description
using System;
using System.Linq;
public class A
{
void foo()
{
var col = from a in new[] { 1, 2, 3 }
join b in new[] {4, 5, 6} on 1 equals 2 into x
select x{caret};
}
}