Debug class methods - C#.NET

Explain the Debug class methods.

a. Assert:This method checks for a condition. It displays a user message if the condition is false.
b. Write:used to write information which will be used by Trace Listeners.
c. WriteIf:Write information for Trace Listeners only if the condition is true.
d. WriteLine: same as write but, every time writes in a new line.
e. WriteLineIf:same as WriteIf but everytime writes in a new line.
Steps to create a setup program that will install or uninstall a web application - C#.NET
Steps to create a setup program that will install or uninstall a web application - Right click on the setup project and add Project output...
Steps to deploy a web application - C#.NET
Explain the steps to deploy a web application - Add a websetup project to the application solution...
Steps to add assemblies to the Global Assembly Cache - C#.NET
Explain the steps to add assemblies to the Global Assembly Cache - sn -k StrongNameFile.snk – creates a strong key...
Post your comment