======================= Getting Started in .NET ======================= .. code-block:: c# var config = new string[] { ".run -- action", " action.out -- print"}; .. code-block:: c# using E2c; .. code-block:: c# var graph = new Graph(config); graph.Actor("action", new Action>( (data, output) => output.Invoke(data))); graph.Actor("print", new Action( Console.WriteLine)); .. code-block:: c# graph.Run("Hello, E2C"); .. code-block:: bash $ Hello, E2C .. code-block:: c# graph.Visualize(); .. image:: /_static/quickstart1.png :align: center