Reputation: 133
I want to know What is difference.
class library vs razor class library
Upvotes: 3
Views: 5187
Reputation: 835
A Razor Class Library is use specifically for creating a set of reusable User Interface widgets that you can plug-in to multiple web apps
A Class Library is a set of usually non UI related classes, to implement a particular function/service or api. e.g. Most of the .Net libraries we use are class libraries.
Upvotes: 11