Skip to content

Instantly share code, notes, and snippets.

View chinaq's full-sized avatar
🎯
Focusing

chinaq

🎯
Focusing
View GitHub Profile
@chinaq
chinaq / QData
Last active November 17, 2017 08:14
C# Data Helper
[TestClass]
public class QData
{
###############################
# str hex to int 32
#####################
public static int StrHexToInt(string hexStr)
{
return Convert.ToInt32(hexStr.Replace(" ", ""), 16);
}