By tag: int
0
kicks
JavaScript int.TryParse Equivalent
One of the most handy methods in .NET is the int.TryParse method. It makes it really convenient when evaluating a string value as an integer. But, JavaScript has no equivalent so you need to do your own evaluation every time. Here's a simple JavaScript method I wrote that takes the work out of evalu...
0
kicks
Convert Int value to Hex value and vice versa in C#
How to convert Int value to Hex value and vice versa in C#