Thursday, March 5, 2009

CopyRight symbol in C#

This was funny to find....

2 good ways to do it

string copyright="\u00A9";

string completetext=copyright + "myCredits";

Much better way =>
press Alt and then 0 1 6 9..this will convert into the copyright symbol

n u r good to go :)

vaibhav