Postconditions ensure that the returned results from a method will match the provided definition. This provides the caller with a definition of the expected result. Postconditions may allowed for simplied implmentations as some possible outcomes can be provided by the static analyizer.
Example...
string GetValue()
{
Contract.Ensures(Contract.Result<string>() != null);
return null;
}
Static Analyis Result...