Is there a way to list all strings (that are not embeddet in a ressource) in a .net project? I'm particulary interested in messagebox strings etc. so I can check if everything has been translated and written correctly. All tools I have tried so far can only list ressoure strings.
Any help very appreciated.
Ah forgot to say: I'm a Windows guy running Windows and only Windows, so please tell me something that runs on windows. I don't mind a simple way without using command line tool hacking etc., but will certainly do it if really neccessary.
Update: It's possible to use regex expressions directly in VS search which is very handy.
("[^"]*")
Matches all strings. However I want to list strings with at least one space character only.
Update2 "([^"])+:b+([^"])+" Does what I need. Hope it helps someone else.
Thanks!