dotnet/roslyn
Cannot "Go To Definition" of a type keyword if you are within that type in decompilation
开放
#25,301 创建于 2018年3月7日
Area-IDEBughelp wanted
仓库指标
- 星标
- (20,414 个星标)
- PR 合并指标
- (平均合并 6天 17小时) (30 天内合并 256 个 PR)
描述
(Turn on decompilation)
- Create Console App (.NET Framework)
- In the following, CTRL+Click
int
class Program
{
static void Main(string[] args)
{
int foo;
}
}
- When prompted say Yes to decompile
- Scroll down to
bool TryParse(string s, out int result) - try and CTRL+Click
int
Expected: To go to the top of the class to the definition Actual: It's not clickable