using System; using System.Collections; using System.Collections.Generic; using System.Linq; namespace Mono.DocTest { public class GenericType { public GenericType TestMethodA(GenericType A) { return A; } } public class NonGenericType { public NonGenericType TestMethodB(NonGenericType B) { return B; } } }