0
Without header file we run the program
2 Respuestas
+ 1
You Can Write C# Program With Only The Following Line At The First:
using System;
Or You Can Even Discard The using System; Directive,But You Will Have To Use The Prefix System With Each Line,For Example:
System.Console.WriteLine("Hello World!");
Instead Of:
Console.WriteLine("Hello World!");
0
yes