1 write to base64Values
mscorlib (1)
system\text\utf7encoding.cs (1)
72base64Values = new sbyte[128];
3 references to base64Values
mscorlib (3)
system\text\utf7encoding.cs (3)
73for (int i = 0; i < 128; i++) base64Values[i] = -1; 74for (int i = 0; i < 64; i++) base64Values[base64Bytes[i]] = (sbyte)i; 720if (currentByte < 0x80 && ((v = base64Values[currentByte]) >=0))