BattleNet.CheckRevision.GetVariableIndex C# (CSharp) Метод

GetVariableIndex() защищенный статический Метод

protected static GetVariableIndex ( char input, uint &offset ) : bool
input char
offset uint
Результат bool
        protected static bool GetVariableIndex(char input,ref uint offset)
        {
            if (input >= 'A' && input <= 'C')
            {
                offset = (uint)(input - 'A');
                return true;
            }
            return false;
        }