Skip to content
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
@siegfriedpammer

Description

@siegfriedpammer

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.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions