1 // Compiler options: -r:System.Xml.dll
3 abstract class MethodWrapper
5 private string[] declaredExceptions
;
7 internal void SetDeclaredExceptions(MapXml
.Throws
[] throws
)
11 declaredExceptions
= new string[throws
.Length
];
12 for(int i
= 0; i
< throws
.Length
; i
++)
14 declaredExceptions
[i
] = throws
[i
].Class
;
23 using System
.Xml
.Serialization
;
27 [XmlAttribute("class")]
30 public static void Main ()