Esempio n. 1
0
 VTable GetOrConstruct(TypeDef type)
 {
     if (!storage.TryGetValue(type, out VTable ret))
     {
         ret = storage[type] = VTable.ConstructVTable(type, this);
     }
     return(ret);
 }