Posts
Sort by recent activity
Bug with generics 3
Subclasses of generic parents are not disassembled properly (additional <T> on using that subclass).
Original:
public class Class4<T> where T : class
{
private DictionarySet[] m...
Warning on missing new Keyword
It would be nice to have the original new keyword present in the exported code.
Original:
public abstract class Class3Base
{
public static string SomeStaticMethod()
{
return S...
Bug with generics 2
Another problem with complex base classes.
Interesting, that showing with "Disassembly" is ok but not if I select "Export..." all classes.
Original:
public interface IEndpointBase
{
}
pu...
Bug with generics
I have found some bugs with generics:
Original source code:public class SomeBase1
{
public virtual T GetValue<T>() where T : class
{
return default(T);
}
&...