Introduction This tutorial briefly shows how to perform the most common operations with the help of...
Archive - May 2019
Create Your Own Generic Class in C#
The .NET framework offers a whole range of so-called generic classes. The best-known example is...
Interactions between Forms in C#.Net
It can happen when developing an application to need multiple forms. We will take the example of an...
WinForms C# Pass Variable Between Forms
This tutorial allows you to retrieve a variable from one form and display it in a textbox on...
How to Read Data from XML File in C# Console Application
This tutorial explains some tips for recovering values contained in an XML file. The published code...
Migrate from C++ to C#
The C# language is based on the syntax and semantics of C++, allowing Programmer C to benefit from ...
C# Read Text File to List
Hello, In this codes will help you to save lines to a list. First, we creates a fileStream object...
C# Read Text File Line by Line
File.ReadLines() method to read a text file that has lots of lines. File.ReadLines() method...
C# Program to Read Characters and Find Frequency from Text File
In this program will shown you how to find the frequency of characters in a string using C# Console...
C# Get All Files in Directory and Subdirectories
Here is just a little tutorial to list all the files in a folder (and its subfolders). Output: C#...