Welcome to Atalasoft Community Sign in | Join | Help

August 2009 - Posts

A word of praise for relevant error messages

What do you think about the following code: byte [] privateParams, publicParams; using (var rsa = new System.Security.Cryptography.RSACryptoServiceProvider()) { privateParams = rsa.ExportCspBlob( true ); publicParams = rsa.ExportCspBlob( false ); } using

ILMerge and ConfigurationSection

Note to self: dearest Dan! If you happen to use ILMerge with an exe file, please make sure you check the app.config file. Why?  Well, suppose you have a custom settings section in your app.config, just like this: < configSections > < sectionGroup
Posted by dbarvitsky | 0 Comments