Feature: Create generic files
It would be nice to be able to create generic files directly.
The convention we use is MyClass{T}.cs and the file contains class
public class MyClass<T>
{
}
The class name created now is MyClass{T} which is an incorrect class name. I also understand that other projects have different conventions so there could be a template file.
I came here looking for the same feature - except we follow the convention of {class name}`{count of type parameters}.{file extension} (e.g. List`1.cs for List<T>).
I don't dislike the convention above (quite the opposite), but this does increase complexity.
Also I found files named like this (for same example class): MyClass[T].cs MyClass(T).cs