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
Just a reminder: Implicit type var in multiple declaration is not allowed. There might be the following compilation errors.
var
var Foo = 0, Bar = 0;
Implicitly-typed variables cannot have multiple declarators
Similarly,
var Foo, Bar;
Implicitly-typed variables must be initialized