Пример #1
0
 /// <summary>
 /// Tries to get an analysis result of a particular type.
 /// </summary>
 /// <param name="result">
 /// The analysis result, if one can be fetched or computed.
 /// </param>
 /// <typeparam name="T">
 /// The type of analysis result to fetch or compute.
 /// </typeparam>
 /// <returns>
 /// <c>true</c> if there is an analyzer to compute the result;
 /// otherwise, <c>false</c>.
 /// </returns>
 public bool TryGetAnalysisResult <T>(out T result)
 {
     return(ImmutableGraph.TryGetAnalysisResult <T>(out result));
 }