namespace ET { public static class ServerUtil { public static int GetBasNumIndex(int numbericType) { return numbericType * 10 + 1; } public static int GetAddNumIndex(int numbericType) { return numbericType * 10 + 2; } } }