This repository was archived by the owner on Oct 16, 2020. It is now read-only.
This repository was archived by the owner on Oct 16, 2020. It is now read-only.
C# CC not working after LINQ orderby clause #583
Open
Description
see http://community.sharpdevelop.net/forums/t/21879.aspx
following example program:
using System;
using System.Linq;
namespace Test
{
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
var result = from a in args where a.Length > 0 orderby a.Length select a;
Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
}
}
}
.
pressing a
after orderby
opens CC, but the list does not contain a
.