All graph data structure can be serialized using the .NET serialization mechanism. You can also use the SerializeToBinary extension methods.
SerializeToBinary
var g = ...; // some graph using(var stream = File.Open("graph.bin")) g.SerializeToBinary(stream);
AdjacencyGraph<TVertex,TEdge> g; // some graph using(var stream = File.Open("graph.bin")) g = stream.DeserializeFromBinary();
There was an error while loading. Please reload this page.