Top ".net" questions

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

How can I bring my application window to the front?

How to bring my application window to front? For example whan my app needs attention. This is for my personal …

c# .net winforms
Playing a MP3 file in a WinForm application

I am developing a WinForm application. I want to play a MP3 file when the user clicks a button. The …

c# .net winforms mp3
Centering controls within a form in .NET (Winforms)?

I'm trying to center a fixed size control within a form. Out of interest, is there a non-idiotic way of …

c# .net winforms center-align
Sequence contains more than one element

I'm having some issues with grabbing a list of type "RhsTruck" through Linq and getting them to display. RhsTruck just …

c# .net asp.net linq
How to fix "'System.AggregateException' occurred in mscorlib.dll"

I'm receiving an unhandled exception while debugging, and the program stops executing. The debugger doesn't show me the line so …

c# .net exception aggregateexception
Internal vs. Private Access Modifiers

What is the difference between the internal and private access modifiers in C#?

c# .net private access-modifiers internal
Use of Finalize/Dispose method in C#

C# 2008 I have been working on this for a while now, and I am still confused about the use of …

c# .net idisposable finalizer
Cannot send a content-body with this verb-type

I just got this exception (ProtocolViolationException) in my .NET 2.0 app (running on windows mobile 6 standard emulator). What confuses me is …

.net webrequest
Creating a ZIP Archive in Memory Using System.IO.Compression

I'm trying to create a ZIP archive with a simple demo text file using a MemoryStream as follows: using (var …

c# .net zip compression ziparchive
How to change the timeout on a .NET WebClient object

I am trying to download a client's data to my local machine (programatically) and their webserver is very, very slow …

c# .net file download webclient