You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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(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.
The text was updated successfully, but these errors were encountered:
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(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.
The text was updated successfully, but these errors were encountered: