P
Papa.Coen
Right after I call a function in an external dll, some of my local
variables, not used in the call (!!!) in any way, are 'null' right
after the call.
(Pseudo)code
[Dllimport ...]
public static ... calc(...)
StringBuilder sB = new StringBuilder("hello");
String tmp = "I'm on my own";
calc(ref tmp);
// sB = null here!
What's happening here!?
variables, not used in the call (!!!) in any way, are 'null' right
after the call.
(Pseudo)code
[Dllimport ...]
public static ... calc(...)
StringBuilder sB = new StringBuilder("hello");
String tmp = "I'm on my own";
calc(ref tmp);
// sB = null here!
What's happening here!?