I log my application's .NET error messages and exceptions in the database and display them in a graphical interface. The GUI displays error messages in the language of the user starting the application. To do this, I register resource names of only error messages and turn them into meaningful messages using resource files.
However, I cannot turn my head around how to achieve the same for standard .NET exception messages. I can only register a message line, but then the language is already βbakedβ, so I can only display an exception in this one language.
Is there a way to get the name of the .NET + exception resource + all the parameters that are inserted into the message line so that I can register them?
Daniel
source share