File: throw.cs

package info (click to toggle)
sdb 1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 444 kB
  • ctags: 721
  • sloc: cs: 4,549; makefile: 162; sh: 1
file content (15 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

static class Program
{
    static void Main()
    {
        try
        {
             throw new Exception();
        }
        catch (Exception)
        {
        }
    }
}