Mega Code Archive

 
Categories / C# / Language Basics
 

Line number

using System; class Operators {     static void Main() { #line 300 #warning Something happened. #warning Something else happened. #line 400 "someotherfile.cs" #warning Something happened later. #line default #warning Nothing else will happen.     } }