BattleNet.AdvancedCheckRevision.WhichVariable C# (CSharp) Method

WhichVariable() protected static method

protected static WhichVariable ( char param ) : int
param char
return int
        protected static int WhichVariable(char param)
        {
            int res = (param) - 'A';
            if (res > 2) res = 3;
            return res;
        }