This class is a placeholder for use with generics. It helps you test generic types by letting you pass non-specific type arguments.
Public Class GenericParameterHelper _ Implements IComparable, IEnumerable, ICloneable
public class GenericParameterHelper : IComparable, IEnumerable, ICloneable
public ref class GenericParameterHelper : IComparable, IEnumerable, ICloneable
type GenericParameterHelper = class interface IComparable interface IEnumerable interface ICloneable end
public class GenericParameterHelper implements IComparable, IEnumerable, ICloneable
The GenericParameterHelper type exposes the following members.
A unit test might not be able to pass a real type to a generic method that it is testing. That code can pass this generic placeholder instead.
When the Team System testing tools generates a unit test for testing a generic type, the calls that test that generic type use placeholder generic type arguments.