public override void Read(ES2Reader reader, object c)
 {
     System.Reflection.AmbiguousMatchException data = (System.Reflection.AmbiguousMatchException)c;
     // Add your reader.Read calls here to read the data into the object.
 }
 public override void Write(object obj, ES2Writer writer)
 {
     System.Reflection.AmbiguousMatchException data = (System.Reflection.AmbiguousMatchException)obj;
     // Add your writer.Write calls here.
 }
 public override object Read(ES2Reader reader)
 {
     System.Reflection.AmbiguousMatchException data = new System.Reflection.AmbiguousMatchException();
     Read(reader, data);
     return(data);
 }