C#.NET assert()

Explain assert().

- Assert method is used in debug compilation.
- It takes a boolean condition as a parameter.
- It shows error dialog if the condition is false and if the condition is true, the program proceeds without interruption.
- This method tests a condition, which you specify as an argument to the assert statement.
C#.NET Difference between // comments, /* */ comments and /// comments
C#.NET comments - // comments - It is Single-line comment...
What are the ways to deploy an assembly? - C#.NET
C#.NET What are the ways to deploy an assembly? - MSI installer, CAB archive, XCOPY command...
Sorting the elements of the array in descending order - C#.NET
C#.NET - Sorting the elements of the array in descending order - You can do so by calling Sort() and then Reverse() methods...
Post your comment