123456789101112131415161718192021222324252627282930313233343536 |
-
- using System;
- namespace Topten.JsonKit
- {
-
- static class DecoratingActivator
- {
- public static object CreateInstance(Type t)
- {
- try
- {
- return Activator.CreateInstance(t);
- }
- catch (Exception x)
- {
- throw new InvalidOperationException(string.Format("Failed to create instance of type '{0}'", t.FullName), x);
- }
- }
- }
- }
|