Tagged Questions
55
votes
1answer
670 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
531 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 ...
9
votes
5answers
466 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
403 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
4answers
366 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 ...
6
votes
7answers
398 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
4answers
842 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 ...
5
votes
3answers
414 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 ...
3
votes
3answers
88 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 ...
0
votes
4answers
165 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 ...