C# Code Examples

Serialize Object to XML in C# | Write Object Data to XML File in C#

This article guides you to serialize object to XML in C#. Below is a complete example to show writing the data…

7 years ago

Calculate the Size of a Directory in C#

Calculate Directory Size in C#: By default, we cannot directly retrieve the total size of a directory in .NET, including subdirectories.…

7 years ago

Convert Int List to String List in C#

Generic collection List has methods for dealing with internal data of the collection.One of the methods of List , ConvertAll()…

7 years ago

Check Whether Two Strings are Anagrams in C#

Words are called anagrams of if they all share the same set of letters to form the respective words. Example:…

7 years ago

Check if a String is Palindrome in C#?

Palindromes are strings that if read in both directions will be the same. Eg:- Malayalam, Civic In this C# coding…

7 years ago