Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

55
votes
1answer
662 views

Problem understanding C# type inference as described in the language specification

The C# language specification describes type inference in Section §7.5.2. There is a detail in it that I don’t understand. Consider the following case: // declaration void Method<T>(T obj, ...
21
votes
3answers
525 views

Why does C# define two different uses for `using`?

More a question out of curiosity than anything, but why does C# define two different "purposes" for the keyword using? On one hand, it's a directive... used to create an alias for a namespace ...
13
votes
2answers
770 views

Why is it not allowed in Java to overload Foo(Object…) with Foo(Object[])?

I was wondering why it is not allowed in Java to overload Foo(Object[] args) with Foo(Object... args), though they are used in a different way? Foo(Object[] args){} is used like: Foo(new ...
9
votes
5answers
464 views

Has the C# spec (team? committee?) ever considered this object creation syntax?

I've never posted a question of this nature before, so if it's not proper for SO, just don't hurt my feelings too bad and I'll delete it. In the interest of keeping everything I care about as close ...
8
votes
4answers
397 views

Question regarding implicit conversions in the C# language specification

Section 6.1 Implicit conversions defines an identity conversion thusly: An identity conversion converts from any type to the same type. This conversion exists such that an entity that already has ...
6
votes
1answer
125 views

Where is it specified whether Unicode identifiers should be allowed in a Haskell implementation?

I wanted to write some educational code in Haskell with Unicode characters (non-Latin) in the identifiers. (So that the identifiers look nice and natural for speakers of a natural language other than ...
6
votes
2answers
1k views

What exactly is the HTML5 <command> tag and what is the browser support

I've read the HTML5 spec for <command> and found the information on this element very vague. I've tried it out and found that it is not working in Chrome (latest version) and it is working on ...
6
votes
7answers
395 views

Questions about Structs

MSDN says that a class that would be 16 bytes or less would be better handled as a struct [citation]. Why is that? Does that mean that if a struct is over 16 bytes it's less efficient than a class or ...
5
votes
1answer
66 views

Objective-C 2.0 ABI specification

Does documentation for the Objective-C 2.0 ABI exist somewhere on the Internet? The release notes for objc4-493.9 say: Forthcoming documentation will describe the ABI for the use of compilers and ...
5
votes
4answers
349 views

Operator '==' can't be applied to type T?

I thought this method was valid but I was wrong: static void Equals<T>(T x, T y) { return x == y; //operator == can't be applied to type T } After reading the specifiation (§7.2.4 in ...
5
votes
3answers
408 views

C# 'dynamic' keyword… is it really a RESERVED keyword or just a identifier that means something special when used as type?

I have a C# 4.0 parser. It accepts 'dynamic' as a keyword as a type. My parser trips over statements found in working C# 3.0 programs of the form of: dynamic = <exp> ; So, it dynamic really ...
4
votes
4answers
743 views

C# short/long/int literal format?

I'm not sure what the proper name for this is, so it's hard to Google: In C/C#/etc you can tell the compiler that a literal number is not what it appears to be (ie, float instead of double, unsigned ...
4
votes
4answers
186 views

C language semantic specification

Wikipidea says that Perl has a dominant implementation that is used as a reference for its specification ,while C language is specified by the standard ANSI ISO. I learnt C language without reading ...
4
votes
2answers
367 views

Inside a while loop, is the last comma separated statement guaranteed to run last?

Consider the following (trivial) code segment: while (i++, i <= 10) { // some more code } In the general case, C++ allows comma separated statements to be evaluated in any order. In the case ...
3
votes
3answers
87 views

C# language specification “Program Instantiation” appears to be mis-identified

In the C# language specification a Program is defined as Program the input to the compiler. While an Application is defined as Application an assembly that has an entry point But, they ...
3
votes
2answers
288 views

Blogger template language specifications

Is there somewhere google published the official blogger template language specifications? I read this question and it provided a lot of useful information, but it didn't provide me with help on a ...
3
votes
2answers
283 views

Syntax (probably BNF) spec of VBA?

I have to maintain a portion of Access 2003 VBA code, which is not my primary programming language, and while I'm pretty solid on doing regular stuff, I would still like to have a pure spec of the ...
2
votes
3answers
250 views

Can this be legally be done in C++?

Note: the following code is illegal, but a conforming compiler is not required to reject it (and some don't). In a library I'm working with I have a template function declaration for Foo and a ...
2
votes
3answers
297 views

Why is this C++ explicit template specialization code illegal?

(Note: I know how it is illegal, I'm looking for the reason that the language make it so.) template<class c> void Foo(); // Note: no generic version, here or anywhere. int main(){ ...
1
vote
2answers
157 views

What is difference between == and === in javascript? [closed]

Possible Duplicate: Javascript === vs == : Does it matter which “equal” operator I use? Hi folks, I'm reading about javascript a lot now and I noticed one strange thing for me. ...
1
vote
5answers
69 views

Are compilers and language specification/grammars the same?

Can a compiler be written, from which you can not reverse engineer the grammar and meaning of the input language. i.e. can you always get the specification of the language from the compiler? Let's ...
1
vote
1answer
219 views

XSD doesn't allow me to have unbounded inside all indicator

I'm trying to make unordered list of variables in var1 occurs twice and var2 occurs infinite times (Use case in my project is different). The element does not allow me to use maxOccurs. Is there ...
1
vote
8answers
150 views

Why don't statements that don't do anything throw an exception (or warn the developer)?

I've been bitten a couple of times by statements in VB.NET (not sure if this effect exists in C#) that appear to be self-referencing, but when they're executed, they don't actually do anything because ...
0
votes
4answers
159 views

Why does C# not allow generic properties?

I was wondering why I can not have generic property in non-generic class the way I can have generic methods. I.e.: public interface TestClass { IEnumerable<T> GetAllBy<T>(); //this ...
-1
votes
2answers
132 views

Question on object lifetime : N3242 Draft

A point from C++11 n3242 "Duration of subobjects, object lifetime", 3.8/1: The lifetime of an object is a runtime property of the object. An object is said to have non-trivial initialization if ...