I'm about to write my navigation system and I'm writing the code for Line Intersection (TraceLine kinda) which i know is well documented, etc, that part is easier. I was just wondering, is there a performance difference (vb.net 3.5)
between something like GPS.DoLinesIntersect(Line1,Line2) vs. Line1.Intersects(Line2)?
(where GPS is a global variable of my own class..DoLinesIntersect could be shared - does that have any performance impacts?