When loading data in the examples, depending on your culture, you may have problem since the float are entered with '.' for separator.
You have to add CultureInfo.InvariantCulture like in this exemple :
float f = float.Parse(s, CultureInfo.InvariantCulture);
When loading data in the examples, depending on your culture, you may have problem since the float are entered with '.' for separator.
You have to add CultureInfo.InvariantCulture like in this exemple :
float f = float.Parse(s, CultureInfo.InvariantCulture);