I'm trying to use Avro serialization in C#. My understanding is that normally with Avro the schema is written with the data.
But the constructor for GenericReader<T> requires both a writer schema and a reader schema. Is there a way to extract the writer schema from the data? (In my case I wrote it with GenericWriter<T> and the BinaryEncoder). - Tim Goodman
