Do NOT use for questions about .NET Core - use [.net-core] instead.
I have an array of integers in string form: var arr = new string[] { "1", "2", "3", "4" }; I need to an array of 'real' …
c# .net linq extension-methodsI have written the following simple test in trying to learn Castle Windsor's Fluent Interface: using NUnit.Framework; using Castle.…
.netOccasionally I have a need to retry an operation several times before giving up. My code is like: int retries = 3; …
c# .netI use combobox in c# windows form. I bound the item list as below: var employmentStatus = new BindingList<KeyValuePair&…
c# .net winforms data-binding comboboxI've finished my C# application, but I have a little problem: When I try to run my application in another …
c# .net winforms visual-studio installationI have a class which looks like this: public class Field { public string FieldName; public string FieldType; } And an object …
c# .net reflection.emit dynamic-class-creationI don't want user to give the back date or time. How can I compare if the entered date and …
c# .net datetimeWhen I get a reference to a System.Diagnostics.Process, how can I know if a process is currently running?
c# .net process