* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Configuration / Test / standalone / t28.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Collections.Specialized;
4 using System.Text;
5 using System.Configuration;
6 using System.Web;
7
8 class T1
9 {
10         static void Main(string[] args)
11         {
12                 try
13                 {
14                         NameValueCollection AppSettings = ConfigurationManager.AppSettings;
15                 }
16                 catch (ConfigurationErrorsException e) {
17                         Console.WriteLine ("configuration exception thrown.");
18                         return;
19                 }
20                 Console.WriteLine ("configuration exception not thrown.");
21         }
22 }