1
vote
4answers
733 views
PHPDoc type hinting for array of objects?
So, in PHPDoc one can specify @var above the member variable declaration to hint at its type. Then an IDE, for ex. PHPEd, will know what type of object it's working with and will b …
6
votes
7answers
907 views
C# ‘var’ vs specific type performance
Earlier I asked a question about why I see so many examples use the 'var' keyword and got the answer that while it's only necessary for anonymous types, that it is used nonetheless …
65
votes
59answers
4k views
Use of var keyword in C#
After discussion with colleagues regarding the use of the 'var' keyword in C# 3 I wondered what people's opinions were on the appropriate uses of type inference via var?
For examp …
0
votes
4answers
105 views
C# - var to List<T> conversion
How to cast/convert a var type to a List type?
This code snippet is giving me error:
List<Student> studentCollection = Student.Get();
var selected = from s in studentColle …
0
votes
1answer
93 views
variables hell - problem with vars and tabs (firefox extension)
I try to make firefox extension, that display two buttons: 1 and 2. When you press button1 to var path get value, that is address of current open page, then new tab is opening beco …
2
votes
9answers
334 views
var keyword in C# 3.0 [closed]
Possible Duplicate:
What’s the point of the var keyword?
Hello everyone,
I want to confirm whether my understanding is correct. If I do not use LINQ, then the only …
0
votes
6answers
208 views
Generic var c++
Hello,
I want to create a generic var, that could be from one class or another class.
In this code sample I want that var aa be generic so in my code I can access code from clas …
1
vote
8answers
154 views
LINQ2SQL: How do I declare a member variable of type var?
I have a class like this
public class foo
{
private void getThread()
{
var AllThreads = from sc in db.ScreenCycles
join …
2
votes
8answers
710 views
In C# 3.0 we use “var” what is its alternative in C# 2.0?
I am learning plug able architecture in .Net using Managed Extensibility Framework (MEF.)
I saw sample code on the net, but when I tried to implement it I got stuck at one point.
…
0
votes
5answers
209 views
nullable var using implicit typing in c#?
Is there anyway to have the var be of a nullable type?
This implicitly types i as an int, but what if I want a nullable int?
var i = 0;
Why not support this:
var? i = 0;
1
vote
5answers
638 views
var for a class in PHP
Hello. I am using a PHP class for login purposes. The MySQL database that the login process checks for the user is defined like this:
class flexibleAccess{
var $dbName = 'm …
1
vote
9answers
349 views
In c# when is the var keyword different from typing it out
C# 3 introduced the var keyword. And when compiled, the compiler will insert the right types for you. This means that it will even work on a 2.0 runtime. So far so good. But the ot …
1
vote
5answers
276 views
MVC Examples use of var
Maybe I live in a bubble, or am just too new, but I was wondering if anyone else has noticed the heavy use of 'var' to declare variables instead of a specific type in many of the M …
