C# Code Snippets

Write XML Content into an XML File using C# code

You can write XML data into a physical XML file using below C# code: private static void Writ...
Category: C# Date: 6/8/2010 11:41:04 AM

Convert Integer to Byte Array using C# code

Following C# code snippet can be used to convert the interger value into byte array: using Sy...
Category: C# Date: 6/6/2010 4:15:47 AM

Display attributes of .Net Assembly using C# code

Following C# code snippets can be used to display all the attributes of a .Net Assembly: usin...
Category: C# Date: 6/6/2010 3:48:39 AM

Create and Delete a Directory/Folder using C# code

Following C# code snippet can be used to Create/Delect a Directory/Folder: using System; usi...
Category: C# Date: 6/3/2010 12:43:41 PM

Calculate Fibonacci number using recursive function written in C#

Following recursive function (function calls itself) written in C# calculates a Fibonacci Number: ...
Category: C# Date: 6/3/2010 12:18:12 PM