Exemplo n.º 1
0
 public static void SetUpForbiddenType <T>()
 {
     customWriters.Add(typeof(T), (ser, obj) =>
     {
         Sanity.BreakIfAttached();
         throw new ArgumentException("Cannot serialize type " + typeof(T));
     });
 }