Tagged Questions
The spec# tag has no wiki summary.
7
votes
11answers
1k views
Why Java, C# and C++ don't have ranges?
Ada, Pascal and many other languages support ranges, a way to subtype integers.
A range is a signed integer value which ranges from a value (first) to another (last).
It's easy to implement a class ...
5
votes
1answer
352 views
Is Spec# stable enough to use?
Does anyone here use Spec# regularly? I would like to know if it is stable and powerful enough before I start using it everywhere.
It looks like the syntax is influencing c# 4.0, which will hopefully ...
4
votes
2answers
459 views
Contract based Programming
Can someone explain the concepts that Spec# might be moving into C# 4.0, regarding Code Contracts?
What are code contracts (Looks to be a compile time checking pattern)
should I be excited about ...
3
votes
2answers
63 views
What keywords/tools are there to help the compiler optimise
Often we're told things like,
If you're calling a method with a return value that doesn't change, take it out of the loop.
for example when writing code like:
for(int i=0; i < ...
3
votes
1answer
361 views
Whats wrong with non nullable objects?
I have been looking at DbC lately and Spec# which seem to have support for non nullable objects. Unfortunately Spec# seem to have been abandoned.
Spec# seemed to have lots of nice language features ...
2
votes
1answer
87 views
Spec#: is it good for me?
I'm working on a LOB framework, with an SL and MVC frontend, WCF backend, and few service modules that run on the server. I've been looking at the Spec#, to see if it helps me in any way. The ...
2
votes
2answers
258 views
Projects that make use of Spec#/Code Contracts.NET
I am interested in finding out more about the use of Spec# and/or its spin-off project Code Contracts.
Is there a live project that currently makes use of either technology?
Thanks, MagicAndi.
...
1
vote
1answer
91 views
How to install Microsoft Spec# 2010
On MS-Research Microsoft has a C#-compatible language called Spec#.
http://research.microsoft.com/en-us/projects/specsharp/
I found installer .msi only for Visual Studio 2008.
...
1
vote
2answers
760 views
Check Active directory Group membership
How do i go about iterating a group to find out if a given user is a member of a group?
I know i can use IsInRole on WindowsPrincipal object but for some reason it don't always work for me, it ...
1
vote
2answers
110 views
What do you think of the Managed Contract Tools library
I recently saw this video
http://channel9.msdn.com/pdc2008/TL51/ about the managed Contract tools library which certainly looks very interesting. Sadly it seems they won't include this into the ...
0
votes
1answer
124 views
The future of Singularity [closed]
Some time ago, Microsoft released a research OS called Singularity which had a number of very interesting and innovative ideas an concept. One of the components that I found particularly intriguing ...
0
votes
6answers
236 views