Skip to content

Instantly share code, notes, and snippets.

@h09shais
Created November 12, 2018 09:40
Show Gist options
  • Save h09shais/8c4827187a6a80fa548323bd08b77bfa to your computer and use it in GitHub Desktop.
Save h09shais/8c4827187a6a80fa548323bd08b77bfa to your computer and use it in GitHub Desktop.
Idea to structure and name files which contain generic classes with the same name
Ref: https://softwareengineering.stackexchange.com/questions/270265/what-is-the-best-way-to-structure-and-name-files-which-contain-generic-classes-w
MyGenericClass<T1>
MyGenericClass<T1, T2>
MyGenericClass<T1, T2, T3>
TO
MyGenericClass`1.cs
MyGenericClass`2.cs
MyGenericClass`3.cs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment