Suppose I have this.
List<Vector3> myVectors;
float maxY; // how do I get this value from the list of vectors?
What I want is to, possibly using Linq, find the individual float value that is the highest Y value from the myVectors list.
I have no clue as to how to do this. Anybody know?
Thank you kindly.