I\'m declaring some strings that are empty, so it won\'t throw errors later on.
I\'ve read that this was the proper way:
string Camnr = Klantnr = Ord
You can to do it this way:
string Camnr = "", Klantnr = "", ... // or String.Empty
Or you could declare them all first and then in the next line use your way.