Posts by Gustavo Passos • 36 points
1 post
-
2
votes1
answer171
viewsA: List is not being passed as method parameter
You can save the "links" reference using the argument passed to the constructor: public class Graph<T> : IGraph<T> { private IEnumerable<ILink<T>> links; public…