This example extends the example Use regular expressions to rename files within a date range and...
Archive - May 2022
How to Use regular expressions to rename files within a date range and that match a pattern in C#
This example extends the example Use regular expressions to rename files that match a pattern...
How to Use regular expressions to rename files that match a pattern in C#
This example shows how to use regular expressions to rename files. To use the program, enter a...
How to Find palindrome dates in C#
A palindrome date is a date that, in numeric format, reads the same forward and backward. For...
How to Unblock files received from email or the internet in C#
I do a lot of technical editing. When a project editor sends me files, Windows marks them as from...
How to Copy folder structure in C#
Sometimes I need to copy a folder structure from one directory to another. For example, for my...
Overloading in C# with Examples
In overloading, there are multiple methods with different method signatures. Below are some...
Generic Class and Generic Method in C# with Examples
In C#, we can also have generic classes and generic methods i.e., classes and methods not made for...
Use For Loop With Array in C#
For-loop. With this loop we use indexes. We have a start, and end, and increment expression. We...
Use Foreach With Array in C#
In C#, the foreach loop iterates collection types such as Array, ArrayList, List, Hashtable...