Top ".net" questions

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

Capturing console output from a .NET application (C#)

How do I invoke a console application from my .NET application and capture all the output generated in the console? (…

c# .net debugging console
Program to find prime numbers

I want to find the prime number between 0 and a long variable but I am not able to get any …

c# .net primes sieve-of-eratosthenes
Best way to check if column returns a null value (from database to .net application)

I have a table with a DateTime column the column can have NULL values Now I connect to the database …

c# .net datetime datatable null
Does .NET provide an easy way convert bytes to KB, MB, GB, etc.?

Just wondering if .NET provides a clean way to do this: int64 x = 1000000; string y = null; if (x / 1024 == 0) { y = x + " …

c# .net byte megabyte
LINQ to Entities does not recognize the method

I'm getting the following error when trying to do a linq query: LINQ to Entities does not recognize the method …

.net linq entity-framework linq-to-entities specification-pattern
Byte[] to ASCII

I received the contents of a text file returned in binary values: Byte[] buf = new Byte[size]; stream = File.InputStream; …

c# .net file-upload bitconverter
How to create a WPF Window without a border that can be resized via a grip only?

If you set ResizeMode="CanResizeWithGrip" on a WPF Window then a resize grip is shown in the lower right corner, …

.net wpf window controltemplate resizegrip
LINQ - Full Outer Join

I have a list of people's ID and their first name, and a list of people's ID and their surname. …

c# .net linq outer-join full-outer-join
Get installed applications in a system

How to get the applications installed in the system using c# code?

c# .net installation
How can I make the computer beep in C#?

How do I make the computer's internal speaker beep in C# without external speakers?

c# .net audio beep