Kulture icon indicating copy to clipboard operation
Kulture copied to clipboard

using System.Linq; Unknown Resolver Error

Open clperez opened this issue 9 years ago • 3 comments

Hi:

I have a 'Class Library' project (VS2015, but not vnext project) which implements the following class:

using System; using System.Collections.Generic; using System.Globalization; using System.Linq;

namespace FrameworkFundamentals { static class TextHandling { public static void BasicStringOperations() { Console.WriteLine(Char.ToUpper('c')); Console.WriteLine(char.IsWhiteSpace('\t')); Char.ConvertFromUtf32(234); var list = new List<String>(30); list.Select(item => item.Length).ToList().ForEach(Console.WriteLine); Console.WriteLine(char.ToUpper('i', CultureInfo.InvariantCulture)); } } }

Sublime displays an error on the "using System.Linq;" line. Error : Unknown Resolver Error - (4, 18)

Omnisharp is working, as it is offering me Intellisense while writing code, but Linq is not listed a sub-namespace of System while writing the using System.Linq line.

Any idea of what could be happening?. I can provide code, and sublime config files if necessary.

Regards.

clperez avatar Jan 19 '16 01:01 clperez

Did you get it to work? I just ran into this problem on macOS, vim, and YouCompleteMe.

danpolanco avatar Nov 09 '16 00:11 danpolanco

Hi Dan.

No. And I actually gave Up on using sublime as my primary editor for dotnet Core. Seems like the last time kulture was updated was before RC2.

Regards

clperez avatar Nov 09 '16 00:11 clperez

Thanks @clperez.

danpolanco avatar Nov 09 '16 01:11 danpolanco