Deepak Kumar Jainthoughtcopy.com·Jun 21, 2023C# Exception Handling💡 Exception = an unexpected event that occurred during program execution that disrupts the desired flow of the program. As mentioned above, exceptions disrupt the flow of the program and terminate the program abnormally. It's the developer's respo...56 readsC# beginner tutorial C#
Deepak Kumar Jainthoughtcopy.com·Jun 20, 2023C# abstract keywordIn this tutorial, we would learn about abstract keyword in c# programming language. abstract: This modifier indicates that thing being modified has a missing or incomplete implementation. This modifier in C# language applies to the following : Class...32 readsC# beginner tutorial C#