Extension Methods – Helpful parse methods for string

1: /// <summary> 2: /// Parses a string as a short 3: /// </summary> 4: public static short ParseShort(this string str, bool throwOnOverflow = true) 5: { 6: return str.ParseAsStruct(Convert.ToInt16, throwOnOverflow); 7: } 8:  9: /// <summary> 10: /// Parses a string as an ushort 11: /// </summary> 12: public static ushort ParseUshort(this string str, …

Extension Methods – Helpful parse methods for string Read More »

JSON serialization – DataContractJsonSerializer vs JavaScriptSerializer

In C#, when you have to work with JSON data you’re usually represented with two choices – DataContractJsonSerializer or JavaScriptSerializer. There are other popular third-party libraries out there, such as the popular Json.Net project, but for the rest of this blog let’s just focus on the two built-in JSON serializers and see how they differ. …

JSON serialization – DataContractJsonSerializer vs JavaScriptSerializer Read More »

By continuing to use the site, you agree to the use of cookies. more information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close