Contract.ValueAtReturn(Of T) Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Represents the final (output) value of an out parameter when returning from a method.
Assembly: mscorlib (in mscorlib.dll)
This method can be used only in the conditional expression for the Ensures contract. As with the OldValue(Of T) method, you can omit the generic type parameter whenever the compiler is able to infer its type. The contract rewriter replaces the method call with the value of the out parameter. The ValueAtReturn(Of T) method may appear only in postconditions. The argument to the method must be an out parameter or a field of a structure out parameter. The latter is also useful when referring to fields in the postcondition of a structure constructor.