Home »
MCQs »
C# MCQs
Which is the first line of a C# program?
99. Which is the first line of a C# program?
- using System;
- using system;
- using Namespace;
- namespace MyApplication
Answer: A) using System;
Explanation:
The first line of a C# program is:
using System;