Most voted "class-library" questions
5 questions
Sort by count of
-
8
votes2
answers927
viewsWhat’s the difference when creating a class libray (.net framework) and class library(.net standard) project in VS2017?
What are the differences and uses of these types of projects?…
-
1
votes1
answer671
viewsASP.NET CORE Dependency Injection
I have a situation that I don’t know how to solve. I have the following scenario: I have an ASP.NET CORE Webapi and a Class Library also in . NET CORE. Since the class library will be according to…
c# dependency-injection asp.net-core class-libraryasked 6 years, 5 months ago Vinícius Avansini 183 -
1
votes0
answers21
viewsHow to integrate a Class Library to a Database Project in Visual Studio
Hello, I am creating a solution in Visual Studio in which I would like to separate all layers of the application in projects to have a better defined structuring. My solution until then is like…
-
0
votes0
answers131
viewsType is defined in a meeting that is not referenced
I have a project called DataLibrary, a . dll is referenced in another project of mine, but for some reason, when compiling VS gives me an error to say that there is a type that is closed in…
-
-2
votes1
answer50
viewsHow do I order a Complex List?
How do I sort a complex list ? I have this list below and I need to sort by Nometype and Nomesubtype: public class Tipo() { public int IdTipo {get; set;} public string NomeTipo {get; set;} public…