Problem : I would like to update a dll for a server process without stopping the service. How do I […]
Category: .Net Coding
How to handle C# .NET GET / POST?
Problem : As I’m new to .NET after coming from PHP I chose C# to work with and its coming […]
Replacing the task scheduler in C# with a custom-built one
Problem : I was wondering if I can change the task scheduler that maps tasks to the real OS threads […]
Handle backslash in the connection string
Problem : I have a following connection string in app.config <add name=”myDBConnectionString” connectionString=”Data Source=ASDFGSQLEXPRESS; Initial Catalog=ZAQ; Integrated Security=True;”/> in my […]
How to make the MaskedTextBox only accept HEX value?
Problem : I need a control that only accept HEX value in the following format: xxxx-xxxx and x is in […]
Creating the IEnumerable> Objects with C#?
Problem : For testing purposes, I need to create an IEnumerable<KeyValuePair<string, string>> object with the following sample key value pairs: […]
c# float [] average loses accuracy
Problem : I am trying to calculate average for an array of floats. I need to use indices because this […]
Is it possible to offer a ClickOnce installer on Github?
Problem : I’m wondering if you can create a ClickOnce installer for a project and then host the installation folder […]
Is it possible to map multiple DTO objects to a single ViewModel using Automapper?
Problem : I was wondering if it is possible to map multiple DTO objects to a single ViewModel object using […]
Prevent Windows workstation (desktop) from locking while running a WPF program
Problem : Issue: I have a WPF fullscreen application, which acts as a dashboard. The computer is in domain and […]