Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 89 Bytes

File metadata and controls

7 lines (7 loc) · 89 Bytes

Generic

public T GenericMethod() where T : new()
{
    return new T();
}