Posts by Fabricio Casali • 1 point
3 posts
-
0
votes1
answer37
viewsA: Take variable from one form and pull into the other form
Good morning Carlos. Although this is not good practice, you can create a static class that stores the values you need. public static class RepVariaveis { public static string MeuValor { get; set; }…
-
0
votes1
answer441
viewsA: IOC - No constructor without parameters has been defined for this object
Good morning Tatiane. I believe the error is occurring at the moment you are solving the Personal object, correct? If this is the case, what is occurring is that the Personal Controller class has…
-
0
votes0
answers19
viewsQ: Best way to accomplish complex builds
I have an application that dynamically loads dlls and other components at runtime, and I’m looking for a solution to build "complex" builds in the style of Apache Ant (available in Java). What…