Posted 17 years ago
by Jake Pearson
-
Software Developer,
Alion Science and Technology
Version: 4.0.0273
Platform: .NET 2.0
Environment: Windows XP (32-bit)
Hi,
I think I found a bug. If you paste the included code into the test application, only 1 of the methods shows up on the intellprompt list.I also have a feature request related to this. In visual studio, the above code shows as two entries on the intelliprompt list. I think it would make more sense if it was one polymorphic function. Make sense?
I think I found a bug. If you paste the included code into the test application, only 1 of the methods shows up on the intellprompt list.
public T GetCell<T>(string address)
{
return default(T);
}
public object GetCell(string address)
{
return null;
}