NRefactory
NRefactory copied to clipboard
Invalid warning: Method never reaches it's end or 'return' statement.
Hi I have this method:
var filesPerWorkspace = from f in localPaths
let workspace = this.GetWorkspaceByLocalPath(f)
group f by workspace into wg
select wg;
foreach (var workspace in filesPerWorkspace)
{
var getRequests = workspace.Select(file => .....).ToList();
workspace.Key.Get(getRequests, GetOptions.GetAll);
}
And I'm getting warning Method never reaches it's end or 'return' statement