public void GetAssemblyOS(int rid, out AssemblyOSRow row)
		{
			_accessor.Position = GetTableRowOffset(MetadataTableType.AssemblyOS, rid);
			row.OSPlatformId = (uint)_accessor.ReadInt32();
			row.OSMajorVersion = (uint)_accessor.ReadInt32();
			row.OSMinorVersion = (uint)_accessor.ReadInt32();
		}
 void IMetadata.GetAssemblyOS(int rid, out AssemblyOSRow row)
 {
     _tables.AssemblyOSTable.Get(rid, out row);
 }