public void GetTypeRef(int rid, out TypeRefRow row)
		{
			_accessor.Position = GetTableRowOffset(MetadataTableType.TypeRef, rid);
			row.ResolutionScope = ReadValue(_codedTokenDataSize4[11]);
			row.Name = ReadValue(_stringHeapOffsetSize4);
			row.Namespace = ReadValue(_stringHeapOffsetSize4);
		}
 void IMetadata.GetTypeRef(int rid, out TypeRefRow row)
 {
     _tables.TypeRefTable.Get(rid, out row);
 }