public void GetMethodSemantics(int rid, out MethodSemanticsRow row)
		{
			_accessor.Position = GetTableRowOffset(MetadataTableType.MethodSemantics, rid);
			row.Semantic = _accessor.ReadUInt16();
			row.Method = ReadValue(_tableRowIndexSize4[MetadataTableType.MethodDef]);
			row.Association = ReadValue(_codedTokenDataSize4[6]);
		}
 void IMetadata.GetMethodSemantics(int rid, out MethodSemanticsRow row)
 {
     _tables.MethodSemanticsTable.Get(rid, out row);
 }