I have got a deserialization method which returns a ValueTuple<String[],String[],String[,],String[,],String[,]>
:
var des = deserializeobject(filename);
Now I would like to work with these arrays within the method
public static void oDocX();
How can I hand over the local variable des
to the method oDocX
?