Do NOT use for questions about .NET Core - use [.net-core] instead.
I have a .net windows application that needs to run in full screen. When the application starts however the taskbar …
c# .net winforms fullscreen taskbarI need to convert an int to a byte[] one way of doing it is to use BitConverter.GetBytes(). But …
c# .net bit-manipulation nfsWhat would a PowerShell script be to return versions of the .NET Framework on a machine? My first guess is …
.net powershell versionIs there an IIf equivalent in C#? Or similar shortcut?
c# .net conditional-operator iif-functionHow can I find the last day of the month in C#? For example, if I have the date 03/08/1980, how …
c# .net datetimeI have been checking out some of the possible timers lately, and System.Threading.Timer and System.Timers.Timer are …
.net timerI have a collection of products public class Product { public Product() { } public string ProductCode {get; set;} public decimal Price {get; …
c# .net linqIn our application, we receive text files (.txt, .csv, etc.) from diverse sources. When reading, these files sometimes contain garbage, …
c# .net text encoding globalization