views:

82

answers:

1

Can anyone define the difference between a C# blank class and an MVC C# blank class?

+2  A: 

There is no difference. If your using C# and MVC and create a new 'class' then it will be a C# class. There is no 'MVC Class'. You can inherit from other MVC classes such as a controller but that is different.

Damien