Kulture
Kulture copied to clipboard
using System.Linq; Unknown Resolver Error
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.
Did you get it to work? I just ran into this problem on macOS, vim, and YouCompleteMe.
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
Thanks @clperez.