String Format for DateTime in C#

String Format for DateTime in C# To Custom DateTime Format There are following custom format specifiers is available y (year), M (month), d (day), h (hour 12), H (hour 24), m (minute), s (second), f (second fraction), F (second fraction, trailing zeroes are trimmed), t (P.M or A.M) and z (time zone). // create date time 2008-03-09 16:05:07.123 DateTime dt = new DateTime(2008, 3, 9, 16, 5, 7, 123); String.Format("{0:y yy yyy yyyy}", dt); // "9 09 009 2009" year String.Format("{0:M MM MM...
More

Convert from decimal to hex and hex to decimal in C#.net

Convert DECIMAL TO HEX and HEX TO DECIMAIL In this post, we can see how we can convert Decimal to hex and hex to decimal. Code: // Store 255 in int int decValue = 255; // Convert int 255 as a hex in a string variable string hexValue = decValue.ToString("X"); // Convert the hex string back to the number int decAgain = int.Parse(hexValue,System.Globalization.NumberStyles.HexNumber); I hope this post is useful for you, If any better way is there then this please let me know. Thanks, ...
More

Mail SMS alert in India Free! Tip

Incoming mail SMS alert in India Free! Tip Copied from way2sms IMPORTANT NOTICE, Updated on April 22th, 2010. “As you may know, we frequently review our products and features to ensure their effectiveness.After reviewing our ‘Way2SMS Mail’ feature, which allows you to ’send and receive emails’, we’ve found that it hasn’t had the impact we had hoped for. As a result, we’ve decided to retire this feature at the end of April.So,We request you to make necessary arrangements before 30th of April...
More