コード例 #1
0
ファイル: Issue696.cs プロジェクト: cbsistem/JSIL
 public static void Main(string[] args)
 {
     try
     {
         Sample s = new Sample();
         s.Action();
         Console.WriteLine("ExtraAccessToAvoidException - Success (not expected)");
     }
     catch (Exception)
     {
         Console.WriteLine("ExtraAccessToAvoidException - Failed (expected)");
     }
 }
コード例 #2
0
ファイル: Issue696.cs プロジェクト: wdstest/SharpJS
 public static void Main(string[] args)
 {
     try
     {
         Sample s = new Sample();
         s.Action();
         Console.WriteLine("ExtraAccessToAvoidException - Success (not expected)");
     }
     catch (Exception)
     {
         Console.WriteLine("ExtraAccessToAvoidException - Failed (expected)");
     }
 }