How do I use a C# Class Library in a project?

后端 未结 9 2071
北恋
北恋 2020-11-28 05:23

I\'ve created a new Class Library in C# and want to use it in one of my other C# projects - how do I do this?

9条回答
  •  醉话见心
    2020-11-28 05:56

    1. Add a reference to your library
    2. Import the namespace
    3. Consume the types in your library

提交回复
热议问题