LukeZurg22
Published WPF Program Unable To Run
I've been working on a version one of my project for a while now, and i've finally got it to the point where I could publish a version one.
However, the version one I published doesn't actually run, and using the event editor I get a large error. I was wondering if anyone here can translate what exactly is wrong with my program that is causing it to crash?
82 replies
Deserializing Given Text File Into JSON
Good evening,
I've spent weeks trying to get the data out of this text file into a proper set of variables to use within my program. So far i've no luck, and my best attempt was to manually read and parse every individual line with a tedious set of boolean checks.
Any possible ways I could better parse this file?
12 replies
CSV Invalid Header Reading [Answered]
I am currently a CSV with a header of "province;red;green;blue;name;x", however my program expects to be able to read CSV's that are strictly
int;int;int;int;string;x
as opposed to (oops!) all strings as given.
I cannot change the CSV; not allowed under any circumstance. I need to implement handling of invalid entries like this but I am uncertain how, especially in a way that won't bog down my program.83 replies
Bitmap From BitmapSource new Error [Answered]
I've been working on a project of mine for quite some time, and I haven't encountered this error before. Data fed into the method converting an image source to a bitmap has not changed, nor the method itself.
I cannot explain why I am getting this error, and google yielded no results.
74 replies
Minor Error Handling ; TryGetValue returning null [Answered]
I have a method that is designed to check through a series of dictionaries and compare the output keys and values. An if-statement is meant to check for any value that could not be gotten with a TryGetValue and instead do something else, but despite that check being there it spits an error exclaiming it could not get a value out to begin with.
37 replies