Visual Studio shows an error when I write this contract below.

Error 20 Malformed contract section in method '....get_Page'

Is the problem with the 'if' block?

public int? Page
{
get
{
    int? result = Contract.Result<int?>();

    if (result != null)
    	Contract.Ensures(result >= 0);

    return default(int?);
}
}

EDIT:

Lasse V. Karisen has posted in comments:

How about: Contract.Ensures(result == null || result >= 0); ?

Yes Karisen, I've tried this before and it compiles. But the question remains: isn't it possible to have ifs when using contracts?

Another problem I'm having is clueless (mainly considering the example above works), involves the use of result also:

public int IndexOf(T item)
{
    Contract.Assert(item != null);
    Contract.Assert((item as IEntity).ID > 0);

    int result = Contract.Result<int>();
    Contract.Ensures(result >= -1);

    return default(int);
}
link|improve this question

3  
How about: Contract.Ensures(result == null || result >= 0); ? – Lasse V. Karlsen Dec 21 '09 at 1:45
5  
To be honest, I haven't looked at code contracts for C# 4.0 yet, I'm still swamped with work in C# 3.0 and .NET 3.5. But, if the point of calling it a "contract" is that it is just that, then remember that criteria that stipulates when a contract is valid is written in the contract, not outside of it. You don't have a contract that says when that other contract is valid. So to me, this sounds like must be like this, you must write a contract that specifies when everything is peachy, and that contract must not be dependent on outside criteria. – Lasse V. Karlsen Dec 21 '09 at 1:52
feedback

3 Answers

up vote 2 down vote accepted

Just having a guess. Perhaps it should be Contract.Ensures(result.Value >= 0)?

link|improve this answer
hum, result can be null actually. – Victor Rodrigues Dec 21 '09 at 1:51
1  
Right, so perhaps (result == null || result >= 0)? – Igor Zevaka Dec 21 '09 at 2:10
More generally, implication if x then y is !x || y, so here we have !(result != null) || result >= 0 which simplifies to result == null || result >= 0. – Porges Apr 13 '10 at 4:45
More generally, implication 'if x then y' is 'x.Implies(y)', so here we have '(result != null).Implies(result >= 0)' – richard Feb 6 at 12:23
feedback

The contract is malformed because all contract clauses MUST appear before any other code.

link|improve this answer
feedback

You do not need an if, or to do boolian manipulation instead use implies!

public int? Page
{
    get
    {
        var result = ...

        ...


        Contract.Ensures( (result!= null).Implies(result >= 0) );
        return result;
    }
}

Also you should use Requires not assert when testing method arguments, and other preconditions.

public int IndexOf(T item)
{
    Contract.Requires(item != null);
    Contract.Requires((item as IEntity).ID > 0);
...
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.