You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicclassProgram{publicstaticDateTimeReturnInput(DateTimeinput){returninput;}publicstaticvoidMain(string[]args){DateTimenow=DateTime.Now;Console.WriteLine(now);// set breakpoint here}}
Set a breakpoint on the call to Console.WriteLine
In the debugger evaluate now and ReturnInput(now)
Result:
The two variables have different values:
now
{09/08/2016 12:34:49}
ReturnInput(now)
{06/24/0001 02:59:04}
Expected:
Two values should be the same
The text was updated successfully, but these errors were encountered:
Issue #7115.
MethodDescCallSide.CallTargetWorker used by funceval needed to deal with
enregistered 16 byte value types arguments not just return values.
Issue #7115.
MethodDescCallSide.CallTargetWorker used by funceval needed to deal with
enregistered 16 byte value types arguments not just return values.
Issue #7115.
MethodDescCallSide.CallTargetWorker used by funceval needed to deal with
enregistered 16 byte value types arguments not just return values.
Build a debuggee with the following code:
now
andReturnInput(now)
Result:
The two variables have different values:
Expected:
Two values should be the same
The text was updated successfully, but these errors were encountered: