Tagged Questions
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 ...
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 < ...
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 ...
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.
...