Пример #1
0
 /// <summary>
 /// Registers a flow graph analysis with this graph.
 /// </summary>
 /// <param name="analysis">The analysis to register.</param>
 /// <typeparam name="T">
 /// The type of result produced by the analysis.
 /// </typeparam>
 public void AddAnalysis <T>(IFlowGraphAnalysis <T> analysis)
 {
     ImmutableGraph = ImmutableGraph.WithAnalysis <T>(analysis);
 }