Tagged Questions
9
votes
5answers
543 views
Simple examples of co and contravariance
Could someone provide me simple C# examples of convariance, contravariance, invariance and contra-invariance (if such thing exists).
All samples I've seen so far was just casting some object into ...
7
votes
4answers
956 views
How do you validate an object's internal state?
I'm interested in hearing what technique(s) you're using to validate the internal state of an object during an operation that, from it's own point of view, only can fail because of bad internal state ...
6
votes
2answers
203 views
C# 3.5 Covariance issue?
I've been hearing/reading a lot about covariance issues in C# and I wanted to pose a few questions & scenarios so hopefully I can clear up my confusion on the matter.
Throughout these examples, ...
5
votes
4answers
350 views
Do invariant assertions fit into C# programming?
In the book coders at work, the author asks "How do you use invariants in your code". Please explain what this question means.
I saw class invariants on wiki, but the example is in Java and I am not ...
3
votes
3answers
140 views
How to implement a Stack class in C#, with pre/postconditions and invariants?
Does anyone have any examples or ideas on how / what is the best way to implement a Stack class in C#? I understand that there is already a Stack class, but I need to understand how to actually ...
3
votes
3answers
63 views
Can I get Code Contracts to warn me about “illegal” subtyping?
Sorry if this question seems too long. Before I can ask it, I need to show where it's coming from.
Set-up:
Given the following immutable type Rectangle:
class Rectangle
{
public ...
1
vote
1answer
37 views
code skips over Contract.Requires
I'm trying to write this method using c# contracts...but when debugging, it completely ignores the Contract.requires and CheckRep() Am I using this incorrectly??
public Poly Add(Poly q)
{
...
0
votes
2answers
214 views
Are missing invariants for an object always a sign of bad design?
I was just thinking of cases when invariant(s) for mainly classes, but to some extent also structs, cannot be readily defined. Would the lack of invariant(s) be a definitive sign of bad design of the ...