Top ".net" questions

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

How to print the current Stack Trace in .NET without any exception?

I have a regular C# code. I have no exceptions. I want to programmatically log the current stack trace for …

c# .net logging stack-trace printstacktrace
Could not load type 'System.Runtime.CompilerServices.ExtensionAttribute' from assembly 'mscorlib

When starting up my web site for the first time, I'm getting this error Could not load type 'System.Runtime.…

.net
C# ListView Column Width Auto

How can I set the column width of a c# winforms listview control to auto. Something like width = -1 / -2 ?

c# .net winforms listview width
How to truncate milliseconds off of a .NET DateTime

I'm trying to compare a time stamp from an incoming request to a database stored value. SQL Server of course …

c# .net datetime
Console.WriteLine does not show up in Output window

I have put some Console.WriteLine calls in to test, but they aren't appearing in the output box? public static …

c# .net winforms
Group by with multiple columns using lambda

How can I group by with multiple columns using lambda? I saw examples of how to do it using linq …

c# .net entity-framework lambda
How can I ignore a property when serializing using the DataContractSerializer?

I am using .NET 3.5SP1 and DataContractSerializer to serialize a class. In SP1, they changed the behavior so that you …

c# .net wcf serialization
The source was not found, but some or all event logs could not be searched

I am getting the following exception. I have given full control to Asp.net account on Eventlogs in Registry edit. […

c# .net windows-7 event-log securityexception
How to force uninstallation of windows service

I installed a windows service using installUtil.exe. After updating the code I used installUtil.exe again to install the …

.net windows-services
ASP.NET MVC: Custom Validation by DataAnnotation

I have a Model with 4 properties which are of type string. I know you can validate the length of a …

c# .net asp.net-mvc asp.net-mvc-3 data-annotations