Home > Mobile >  What is difference class library and razor class library?
What is difference class library and razor class library?

Time:06-04

I want to know What is difference.

class library vs razor class library

CodePudding user response:

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.

  • Related