Esempio n. 1
0
    public int ToDecimal(char[] chars)
    {
        int l = AzureChars.IndexOf(chars[0]);
        int r = AzureChars.IndexOf(chars[1]);

        return((l * _azureChars.Length) + r);
    }
Esempio n. 2
0
    public int ToNumericValue(char[] chars)
    {
        int l = AzureChars.IndexOf(chars[0]);
        int r = AzureChars.IndexOf(chars[1]);

        return((l * _azureChars.Length) + r);
    }