6
votes
6answers
89 views
C# - Indexer at its meaningful application
I understand indexer enable us to access a collection within a class as though the class
itself were an array.
Suppose we are developing a project ,where do we fit the real pratic …
2
votes
2answers
61 views
Detecting the browser language of choice with PHP
Hello guys, I'm trying to implement this code to have different files to load for german, spanish or english browser languages of choice.
The case is that with my spanish IE I stil …
5
votes
3answers
116 views
Python: create a dictionary with list comprehension
I like the python list comprehension operator (or idiom, or whatever it is).
Can it be used to create dictionaries too? For example, by iterating over pairs of keys and values:
d …
7
votes
7answers
301 views
Why doesn’t ‘using’ have a catch block?
I understand the point of "using" is to guarantee that the Dispose method of the object will be called. But how should an exception within a "using" statement be handled? If ther …
12
votes
20answers
776 views
What features should Java 7 onwards have to encourage switching from C#?
C# has a good momentum at the moment. What are the features that you would need to have in order to switch (or return) to Java?
It would also be quite useful if people posted work …
3
votes
2answers
99 views
What extensions to the language does the C# compiler implement?
In Eric Lippert's blog entry on umpires and the C# compiler and spec, he makes this statement:
(or deliberately; we implement a small number of extensions to the formal C# lang …
0
votes
5answers
105 views
Does Java have Automatic Properties?
In c# you can setup properties like this:
public int CustomerId {get;set;}
Which sets up an automatic property called CustomerId, but I was wondering if there was anything simil …
10
votes
14answers
667 views
A real use for `as` and `is`
I have -never- used as or is in C# or any language that supports the keyword.
What have you used it for?
I dont mean how do i use it i mean how have you actually need it?
I a …
5
votes
2answers
84 views
Why isn’t the eigenclass equivalent to self.class, when it looks so similar?
I've missed the memo somewhere, and I hope you'll explain this to me.
Why is the eigenclass of an object different from self.class?
class Foo
def initialize(symbol)
eigencl …
0
votes
1answer
35 views
LINQ’s FirstOrDefault in SQL script?
Hello!
What is the SQL language keyword for the LINQ-to-SQL FirstOrDefault or SingleOrDefault?
Is it TOP(1)?
EXAMPLE:
SELECT TOP(1) @ItemCode = ItemCode FROM VendorItem WHERE V …
0
votes
5answers
59 views
Why do fixes of PHP Bugs/Features take so long?
This may not be strictly programming-related.
How come PHP Features / Bugs that seem important(*) always take a while to be developped?
For example, in PHP most sorting functions …
38
votes
35answers
4k views
Hidden Features of HTML
HTML being the most widely used language (at least as a markup language) has not gotten its due credit.
Considering that it has been around for so many years, things like the FORM …
10
votes
21answers
921 views
Poll: What is stopping you from switching (from Java) to Scala ?
What would make you to switch to Scala ?
If you are negative on the switching to Scala, please state the reason as well (or upvote).
As with all StackOverflow Poll type Q&A …
3
votes
8answers
290 views
What features should C# 4.0 onwards have to encourage switching from Java?
Java is a popular language & platform, having a huge ecosystem. Are there any features that C# 4.0 onwards and its platforms should have, to make you completely switch to C# pr …
8
votes
14answers
755 views
Impressive examples in Java?
I'm going to teach a Java course, and I want to show some interesting and impressive examples of simple Java programs at the first lecture to awaken student interest.
Except for …
