using System;
public class Program
{
public static void Main()
try
int x = 10; // This is line 38 in the editor window
int y = 0;
int z = 0;
z = x / y; // This is line 41,throwing the exception (divide by zero)
}
catch (System.Exception ex)
Console.WriteLine(new System.Diagnostics.StackTrace(ex, true).GetFrame(0).GetFileLineNumber());