About 334,000 results
Open links in new tab
  1. What is the difference between .NET Core and .NET Standard Class ...

    What is the difference between Class Library (.NET Standard) and Class Library (.NET Core)? Compatibility: Libraries that target .NET Standard will run on any .NET Standard compliant runtime, …

  2. How do I use a C# Class Library in a project? - Stack Overflow

    Aug 4, 2009 · 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?

  3. c# - Cannot See Class Library (.NET Core) in Visual Studio 2022 while ...

    Apr 8, 2023 · Cannot See Class Library (.NET Core) in Visual Studio 2022 while adding/creating new class library projects Asked 2 years, 8 months ago Modified 2 years, 8 months ago Viewed 5k times

  4. Dependency Injection in .NET Core inside a class library

    Apr 27, 2020 · How can I inject one class into another inside a .NET Core library project? Where should I configure DI as it is done in StartUp Class ConfigureServices in API project?

  5. BCL (Base Class Library) vs FCL (Framework Class Library)

    Jun 23, 2009 · The Base Class Library (BCL) is literally that, the base. It contains basic, fundamental types like System.String and System.DateTime. The Framework Class Library (FCL) is the wider …

  6. ClassLibrary Resources in a .NET 8 project - Stack Overflow

    Jun 26, 2024 · 5 I want to move my resources, Images and Strings.resx files, from my WPF project to a class library. So, that a non WPF project could use the same project. Therefor I created a new class …

  7. When is it the right time to use C# class library (.dll)?

    Oct 20, 2016 · If so, it should be in a class library. If not, you may still want to put it in a class library just for the sake of separation (e.g. have one assembly per tier in an n-tier solution), but you could just …

  8. What is the difference between a class library and a namespace?

    Jun 15, 2018 · A class library is a package of types (class, struct, and so on) that are compiled into a deployable unit (DLL (Dynamic Link Library) files). The purpose of it is to make code reusable across …

  9. c# - "A project with an Output type of Class Library cannot be started ...

    A project with an Output type of Class Library cannot be started directly In order to debug this project, add an executable project to this solution which references the library project. Set the executable …

  10. How import WebApplicationBuilder in a Class Library?

    Feb 16, 2022 · You can reference AspNetCore types in a regular class library, you just need to add a framework reference (see my answer below). (From )