So for instance if I've an array of an object with the properties "Distance" and "Origin" is there any quick way of getting an array of just the distance property from that array without having to do:
float[] distances = new float[objectArray.Length] ();
for (int i; i < objectArray.Length; i++)
{
distances[i] = objectArray[i].Distance;
}
LINQ. Essentially, you'd write something likeobjectArray.Select(o => o.Distance).ToArray().