7 references to s_lookupTable
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Net\WebUtility.cs (7)
675
Debug.Assert(
s_lookupTable
.Count == 253, $"There should be 253 HTML entities, but {nameof(
s_lookupTable
)} has {
s_lookupTable
.Count} of them.");
678
Debug.Assert(
s_lookupTable
[ToUInt64Key("quot")] == '\x0022');
679
Debug.Assert(
s_lookupTable
[ToUInt64Key("alpha")] == '\x03b1');
680
Debug.Assert(
s_lookupTable
[ToUInt64Key("diams")] == '\x2666');
965
s_lookupTable
.TryGetValue(ToUInt64Key(entity), out char result);