Posted 18 years ago
by Nik Verkhovtseff
Version: 4.0.0246
Platform: .NET 2.0
Environment: Windows XP (32-bit)
Hi,
It seems, that Quick Info isn't displayed for constants.Thanks,
Nik
It seems, that Quick Info isn't displayed for constants.
class MyClass
{
private const string MyConst = "AAA";
public string TestString
{
get
{
// Quick Info for MyConst isn't displayed
return MyConst;
}
}
}
Nik