Question about interface naming convention
Earlier in the book I remember it saying that when you name an interface it is traditional to start with capital i. So i am wondering in the section on generic interfaces they do
interface MyFarmingInterface<T>
was the naming convention only for types already made in the .NET namespace and not user created ones?
|