Search Results

2
votes

How do I see the hex values of a string in a VS2008 watch window?

Add your string as a watch, then edit the watch expression and append ".ToCharArray()" to view it as an array of chars. When you expand your watch you will see char code next to each individual cha …
11
votes

Web desktops - do you find it interesting?

NO. Also, Uncanny valley of UI. …
5
votes

Remove JavaScript comments from string with C#

If you want to minify Javascript files ("make it light to load"), why not try JSMin by Douglas Crockford? There is link t …