I have a function which uses out parameters. How can I mock this function?
My function is:
GetProperties(out string name, out string path, out string extension);
In my original code, I am doing this:
string Name;
string Path;
string Extension;
MyObject.GetProperties(out Name, out Path, out Extension);
Now, how I can mock this?