Ejemplo n.º 1
0
            static Stream Serialize(SourceNode node)
            {
                var stream = new MemoryStream();

                node.Serialize(stream);
                stream.Position = 0;
                return(stream);
            }