OkOk
OkOk
CC#
Created by Loneliness on 3/30/2024 in #help
I'd love to have some assist here
By writing it something like namespace1.SameNameObject
9 replies
CC#
Created by Loneliness on 3/30/2024 in #help
I'd love to have some assist here
So the code does not know which object you want, what you can do is to specify the namespace of the desired object
9 replies
CC#
Created by Loneliness on 3/30/2024 in #help
I'd love to have some assist here
You have two imports that reference two different objects that both share the exact same name specified
9 replies
CC#
Created by iker on 3/30/2024 in #help
What is this command doing in Visual Studio Code?
It might just be some tool that visual studio uses when people want to run different things, and that process will either start the real dotnet debugger or just run the dotnet project without debugging
4 replies
CC#
Created by iker on 3/30/2024 in #help
What is this command doing in Visual Studio Code?
I am assuming that vsdbg.exe is not related to the dotnet debugging tools
4 replies
CC#
Created by HeyBaldur on 3/11/2024 in #help
ML Profile Matcher
This is too niche for me
5 replies
CC#
Created by nevimcobuh on 3/17/2024 in #help
✅ unknown error
Change the word "protected" to have the same accessibility-word as the class "Positions" have
5 replies
CC#
Created by MrWholesome on 3/11/2024 in #help
How can I debug a program working fine on my development PC vs the deployment PC?
The information you got about not binding to local ports - I would discard that as faulty or a misunderstanding
12 replies
CC#
Created by MrWholesome on 3/11/2024 in #help
How can I debug a program working fine on my development PC vs the deployment PC?
No description
12 replies
CC#
Created by MrWholesome on 3/11/2024 in #help
How can I debug a program working fine on my development PC vs the deployment PC?
Don't worry that can be googled
12 replies
CC#
Created by Williamo on 3/12/2024 in #help
trying to search through a Reportviewer
Then run your application in debug-mode and step through all the lines until you encounter the behavior that you are not expecting, then write that down in a new question where you are more specific in your solution method and skip unnecessary information
4 replies
CC#
Created by Williamo on 3/12/2024 in #help
trying to search through a Reportviewer
I don't have enough information to solve this
4 replies
CC#
Created by BruceA on 3/11/2024 in #help
Why can't Visual Studio find this file?
I would print out the folder contents with that same path, this will show you if you are in the right location
2 replies
CC#
Created by HeyBaldur on 3/11/2024 in #help
ML Profile Matcher
This question in not phrased well
5 replies
CC#
Created by Weenie on 3/11/2024 in #help
Trying to learn how to use return variables, is this a good practice exercise?
Seems like multiple very hardened responses to a beginner-question 😁
12 replies
CC#
Created by MrWholesome on 3/11/2024 in #help
How can I debug a program working fine on my development PC vs the deployment PC?
I think the only problem a network change will do is that your companys router firewall is preventing traffic to your computers specified port I would ask someone on the network team if the firewall is allowing incoming traffic to some range of ports, then i would pick one of those to host my application on
12 replies
CC#
Created by oZion on 3/12/2024 in #help
Can't read from file in same folder
I would add a line to print the path of the executable, then run it Like so "Console.WriteLine(System.IO.Path.GetDirectoryName(Application.ExecutablePath));" Then I would change the path to go back as many directories as your text file is in like "../../../pickupDA.txt" Or just put the text file in the same printed path
9 replies
CC#
Created by OkOk on 11/25/2023 in #help
JsonSerializer.Deserialize will not translate number to string
@jcotton42 But it seems like a very real scenario where an api needs to sometimes show a number and sometimes a "N/A" "None" "NULL" "" etc
20 replies
CC#
Created by OkOk on 11/25/2023 in #help
JsonSerializer.Deserialize will not translate number to string
@ZZZZZZZZZZZZZZZZZZZZZZZZZ But JsonNumberHandlingAttribute is a custom converter And the JSON value is just the number 9, so why would it throw this error and why should I make yet another converter?
20 replies
CC#
Created by OkOk on 11/25/2023 in #help
JsonSerializer.Deserialize will not translate number to string
@ZZZZZZZZZZZZZZZZZZZZZZZZZ I mean it seems like a common problem calling an API which will give you JSON that might either answer with a number or a string like "N/A" To me it seems like something that would have a well known and documented C# solution
20 replies