C# Interview Question and Answer
1- What is C# ?
C# is a Simple, Modern, General-purpose, object-oriented programing Language developed by Microsoft.
it is a type safe and Managed language that is compiled by Roslyn .NET Compiler to generate Microsoft intermediate Language(Machine code).
2-What is a Object?
Object in C# are instance of class.
3-Explain Types of comment in C# with Examples?
There are three type of comment in C# 1) Single Line comment 2) Multi Line comment 3) XML comments.
Single Line comment uses //
Multiline comment are /*.................................. */