The program I'm working on reads ResX files and it fails to read this one particular resx file that has two assembly elements for the same name.
ex.
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<assembly alias="System.Windows.Forms" name="System.Windows.Forms">
are in the same resx file. When parsing the data element below the latter assembly a System.TypeLoadException is thrown. When I delete the latter one, there is no exception thrown.