Top ".net" questions

Do NOT use for questions about .NET Core - use [.net-core] instead.

Where Is Machine.Config?

I want to apply a change so That I can use Server GC settings for my C# 3.5 app - I …

.net garbage-collection
Associating enums with strings in C#

I know the following is not possible because the Enumeration's type has to be an int enum GroupTypes { TheGroup = "OEM", …

c# .net
MVVM: Tutorial from start to finish?

I'm a C#/Windows Forms programmer with more than 5 years experience. I've been investigating WPF using the MVVM (Model-View-ViewModel) design …

c# .net wpf mvvm
Set background color of WPF Textbox in C# code

How can I change the background and foreground colors of a WPF Textbox programmatically in C#?

c# .net wpf background-color
Upload files with HTTPWebrequest (multipart/form-data)

Is there any class, library or some piece of code which will help me to upload files with HTTPWebrequest? Edit 2: …

.net upload httpwebrequest
.Net: How do I find the .NET version?

How do I find out which version of .NET is installed? I'm looking for something as simple as "java -version" …

.net
How to read data from excel file using c#

My application needs to read data from an excel file. I am using .Net and c# for development. I cannot …

c# .net excel ms-office
Unable to read data from the transport connection : An existing connection was forcibly closed by the remote host

I have a server app and sometimes, when the client tries to connect, I get the following error: NOTE: the "…

c# .net ioexception
Count the items from a IEnumerable<T> without iterating?

private IEnumerable<string> Tables { get { yield return "Foo"; yield return "Bar"; } } Let's say I want iterate on those …

c# .net ienumerable
How to delete a file after checking whether it exists

How can I delete a file in C# e.g. C:\test.txt, although apply the same kind of method …

c# .net windows