Posts by Jose Paulo • 116 points
8 posts
-
0
votes2
answers576
viewsA: Function or Method to Restart an Application on the C#console
There are some alternatives to get the result you want. The first I can think of is to create a method on the side and call it again class Program { static void Main(string[] args) { run(); } static…
-
0
votes2
answers151
viewsA: Calling a service . py inside another . py
Good being so we have two observations, one of which a windows service does not call another service, windows service is, give that do not occur problems, always running. Given this, some things…
-
2
votes1
answer2633
viewsA: C# - Get Connectionstring from Appsettings.Json of a dotnet Core MVC application from a Data Access Library
Hello, using a webapi aspnet core Voce can do as follows. See if for Voce this solves, or can adapt to your problem In the controller you create a builder that receives a IConfiguration and assign…
-
1
votes1
answer237
viewsA: Empty Multipart/form-data (ASPNET CORE)
Hello, the key, in Postman, needs to have the same parameter name, in case file.
-
1
votes3
answers279
viewsA: Regular expression to ignore quote separator
I imagine there are two problems, the first would be to replace ; for ,, this can be solved with a texto.Replace(";", ",");. The other would be to return these occurrences, in this case would be…
-
1
votes3
answers233
viewsA: Error using append after merging two lists into one
Hello, The problem there are two of them is the identation more I imagine it is at the time of pasting the code that she was lost, the other is that the method .append(foo) is void so there is no…
-
1
votes5
answers8633
viewsA: What is the most complete way to install python on Windows?
I would like to quote the Chocolatey, a package manager for windows offering an experience similar to that of package managers in linux, its installation is simple just copy the command below and…
-
1
votes1
answer93
viewsA: Problem searching and filtering date data on object
Man from what I saw Oce is trying to iterate over dictionaries as if it were a list, in python it is not possible to access a dictionary by syntax foo[2] for example, unless 2 be the key to this…