Tag: .NET

  • Caching in .NET

    In every application you have some data that is more read-more,write-once or twice. For example you can have the list of Cities of a country,the list of Countries of the world or list of exchange currency. This data is modified rarely. Also,you can have data that is not very sensitive to be real-time,such as the…

  • Intercept errors

    Errors interception and rising Description We will speak here about the errors raised by external conditions (bugs) and the errors rose by the application. There is not application without bugs. The bugs are not desired for an application – but programmers are human beings and,by consequence,they cannot verify every possible path that go an application…

  • My programmer tools in 2009

    you can download the PDF from http://msprogrammer.serviciipeweb.ro/wp-content/uploads/2010/03/tools.pdf Tool Description Link SharpZipLib Zip files programatically http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx nunit test http://www.nunit.org/index.php svn source control http://subversion.apache.org/ hudson continous integration http://hudson-ci.org/ EntityFramework sql server database to .NET code filehelpers parse csv and other files http://www.filehelpers.com/ log4net logging http://logging.apache.org/log4net/ lumisoft parsing email messages http://www.codeproject.com/KB/vista/SMTP_POP3_IMAP_server.aspx moq mocking in unit test http://code.google.com/p/moq/ automapper…

  • How To … Read database connection strings from app.config or web.config file

    Step 1 : Add a app.config file Step 2: Add the connection string Step 3: Add reference to system.configuration Step 4: Use the connection from ConfigurationManager.ConnectionsStrings   download visual studio solution