Activity overview
Latest activity by Romchick
One more bug: // Expected:
// [DebuggerTypeProxy(typeof(NonGenericNestedClassBug<>.NestedClass))]
// Actual:
// [DebuggerTypeProxy(typeof(NestedClass<>))]
[DebuggerTypeProxy(typeof(NonGenericNestedClassBug<>.NestedClass))]
public class NonGenericNestedClassBug<T>
{
// Expected:
// public NestedClass TestMethod()
// {
// return new NestedClass();
// }
// Actual:
// public NestedClass<T> TestMethod()
// {
// return new NestedClass<T>();
// }
public NestedClass TestMethod()
{
return new NestedClass();
}
public class NestedClass
{
}
}
/ comments
One more bug:// Expected:
// [DebuggerTypeProxy(typeof(NonGenericNestedClassBug<>.NestedClass))]
// Actual:
// [DebuggerTypeProxy(typeof(Neste...
Several bugs
Hi all,
There are several bugs in Reflector. Below are code snippets that reproduce the bugs:public struct ImplicitCastBug
{
// Expected:
// ((int)this).ToString(&#...