Hi,
When using regional setting such as Finland there is always a problem with trying to compile the ClassLib project. The line which causes problems is the 1148:
eventMesg.fields[fieldIndex].subfields.Add(new Subfield("SportPoint", 134, 1,1 , 0f, ""));
It could be easily fixed for example with following fashion:
eventMesg.fields[fieldIndex].subfields.Add(new Subfield("SportPoint", 134, float.Parse("1.1", CultureInfo.InvariantCulture), 0f, ""));
The problem in nut shell is that here the decimal seperator character is , instead of .