Founder C# Corner. Founder & CEO Mindcracker Inc. Investor, Advisor, Board member of several startups and non profit foundations. Try to implement emerging technologies when trying to solve the next problem.
WebAssembly, Wasm
In this video, Immo Landwerth introduces .NET Standard.
Do you have creative skills? Create your own Mindcracker MVP banner and upload it. We will put it live. Check out these banners.
New version of MonoTouch is available now.
In this article I will explain about working with Transformation with Brushes in GDI+.
Do you really think netbooks are worth the price? Why would you buy one?
How to Sort a Dictionary by Value using C#. The example code first creates a dictionary and then uses OrderBy method to sort the items.
How to sort a C# Dictionary by keys and values.
The List<T> class in C# and .NET represents a strongly typed list of objects. List.Remove() and List.RemoveAt() methods with List.Clear() method can be used to remove items of a List<T>...
How to read a list items using C#. The List<T> is a collection. We can use the foreach loop to go through all the items and read them.
In this article, you will learn how to replace a substring in a C# string.
List<T> provides RemoveAt() method to remote items at a specified position. Code examples in this article removes an item at a specified position using C# and .NET.
C# List<T> class provides methods and properties to create a list of objects (classes). List.Remove(), List.RemoveAt(), and List.Clear() methods are used to delete items of a List in C#.
How to write a binary file using C# and .NET. The Write overloaded method is used to write primitive data types to a stream. The Write method can write a Boolean, Byte, Char, Decimal, Double, and I...
Learn how to read a binary file in C# and .NET. The Read overloaded method writes primitive data types to a stream. The Write method can write Boolean, Byte, Char, Decimal, Double, and Integer data...
How to create and write to a binary fine using C# and .NET. The System.IO.BinaryWriter class is used to write binary data to a stream. This class also provides an option to specify the character en...
How to check when a file was created in C#. The CreationTime property returns the DateTime when a file was created.
This tip and code snippet shows how to bind a struct to a ComboBox in WPF and load its properties in the drop down.
The following code snippet shows how to bind an enumeration to a ComboBox in WPF or Windows Forms using C#.
Learn how to read a text file in C# using the File class and its methods.