Feeds:
Posts
Comments

Posts Tagged ‘C#.Net’

Detailed explanation of using csharp and vb files in app_code.

Read Full Post »

Below is a sample code which performs MD5 hash algorithm on a simple string. public string GetMD5Hash(string input) { // Create object of MD5 crypto service provider. System.Security.Cryptography.MD5CryptoServiceProvider x = new System.Security.Cryptography.MD5CryptoServiceProvider(); // Convert the string into byte array. byte[] bs = System.Text.Encoding.UTF8.GetBytes(input); // Perform ComputeHash on the byte array which will return the hash [...]

Read Full Post »

Follow

Get every new post delivered to your Inbox.