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;
        }