12345678910111213141516171819202122232425262728293031323334353637383940 |
-
- using System;
- namespace Topten.JsonKit
- {
-
- public 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);
- }
- }
- }
- }
|