4 references to ReadHexDigit
Microsoft.Analyzers.Local (4)
ApiLifecycle\Json\JsonReader.cs (4)
250value += ReadHexDigit() * 4096; // 16^3 251value += ReadHexDigit() * 256; // 16^2 252value += ReadHexDigit() * 16; // 16^1 253value += ReadHexDigit(); // 16^0