C Sharp Tutorials

Enumerations in C# – Free C# Tutorials

In this blog we will discuss about Enumerations in C# An enumeration is a user-defined integer type which provides a way of attaching names to  numbers. The enum keyword automatically enumerates a list of words assigning them values 0.1.2 and so on. This facility provides an alternative means of creating ‘constant’ variable names. The syntax of …

Enumerations in C# – Free C# Tutorials Read More »

Regular Expressions in c# – Free C# Tutorials

In this blog we will discuss in detail about what is a regular expression in c# and understand it with simple code. Regular expressions provide a powerful tool for searching and manipulating large text.A regular expression are mainly applied to the text for achieving the following tasks: To locate substrings and return them To modify …

Regular Expressions in c# – Free C# Tutorials Read More »