Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeTable.cs (5)
54private static readonly Dictionary<KeyPair<CType, int>, ArrayType> s_arrayTable =
55new Dictionary<KeyPair<CType, int>, ArrayType>();
82public static ArrayType LookupArray(CType elementType, int rankNum)
85s_arrayTable.TryGetValue(new KeyPair<CType, int>(elementType, rankNum), out ArrayType result);
89public static void InsertArray(CType elementType, int rankNum, ArrayType pArray)