Tag - C# Tutorial

C# Class

Using Delegates in C#

This article discusses an important topic about delegated types in C # (csharp). It will undoubtedly be part of a series of articles on the basics of CSharp. So we’ll see what delegates are and why they’re so...

General

How to Encrypt/Decrypt a File in C#

In this tutorial I will guide you How to Encrypt/Decrypta File in C#, with examples and Demo code, you can download for use. The Decrypt method decrypts an encrypted file. Only account that has encrypted a file can decrypt a file...

File General

Delete a File in C#

In this post will guide you How to Delete a File in C#, with examples and Demo code, you can download for use. The Delete method deletes the specified file permanently. The following code snippet deletes a file: C# class Program...

General

How to get list of drives in C#

In this example I will show you how to use GetLogicalDrives method of returns all logical drives on a system. To do this, create a new Project and write the following code. The following example shows how to display the logical...

C#

Classes, Methods and Properties in C #

The concept of class is the basis of any object-oriented programming language and has the power to define the characteristics of a set of objects that have properties and perform the same actions. In fact, it represents all...