Click here to Skip to main content
15,913,722 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Robot Sun11-Jun-15 5:40
Robot Sun11-Jun-15 5:40 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
OriginalGriff11-Jun-15 4:28
mveOriginalGriff11-Jun-15 4:28 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Richard Deeming11-Jun-15 4:32
mveRichard Deeming11-Jun-15 4:32 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
OriginalGriff11-Jun-15 4:40
mveOriginalGriff11-Jun-15 4:40 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Jörgen Andersson11-Jun-15 12:07
professionalJörgen Andersson11-Jun-15 12:07 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
OriginalGriff11-Jun-15 20:27
mveOriginalGriff11-Jun-15 20:27 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Jörgen Andersson12-Jun-15 9:33
professionalJörgen Andersson12-Jun-15 9:33 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
OriginalGriff13-Jun-15 0:16
mveOriginalGriff13-Jun-15 0:16 
Afraid so - Linq works by creating anonymous types which are specific to the query - so if you don't have a "define this from context" variable type it can't do things like this:
C#
var v = myCollection.Where(w => w.ID < 10).Select(s => new {ID = s.ID, Name = s.Name});
Because you can't declare
C#
IEnumerable<WhatNameWillTheCompilerGiveThatDamnThing> v = ...


It only annoys me when people use it as a shortcut datatype:
C#
var v = 123;
Or to be really annoying
C#
var v = GetSomething(somethingElse);
because it may save you 5 seconds typing, but I'm going to have to hunt down the method declaration to try and work out the heck you are doing... Mad | :mad:
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

GeneralRe: Great Confusing Problem with VB.NET developers Pin
Jörgen Andersson13-Jun-15 9:10
professionalJörgen Andersson13-Jun-15 9:10 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Jörgen Andersson16-Jun-15 2:00
professionalJörgen Andersson16-Jun-15 2:00 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
TNCaver12-Jun-15 8:28
TNCaver12-Jun-15 8:28 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Jörgen Andersson12-Jun-15 9:36
professionalJörgen Andersson12-Jun-15 9:36 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
PIEBALDconsult2-Aug-15 15:45
mvePIEBALDconsult2-Aug-15 15:45 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Amarnath S11-Jun-15 4:48
professionalAmarnath S11-Jun-15 4:48 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Robot Sun11-Jun-15 5:26
Robot Sun11-Jun-15 5:26 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Robot Sun11-Jun-15 5:35
Robot Sun11-Jun-15 5:35 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
TNCaver12-Jun-15 8:38
TNCaver12-Jun-15 8:38 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Robot Sun11-Jun-15 5:44
Robot Sun11-Jun-15 5:44 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Amarnath S11-Jun-15 6:04
professionalAmarnath S11-Jun-15 6:04 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Robot Sun11-Jun-15 19:29
Robot Sun11-Jun-15 19:29 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Amarnath S11-Jun-15 20:01
professionalAmarnath S11-Jun-15 20:01 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Sander Rossel11-Jun-15 5:42
professionalSander Rossel11-Jun-15 5:42 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Joe Woodbury11-Jun-15 11:29
professionalJoe Woodbury11-Jun-15 11:29 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Mycroft Holmes11-Jun-15 14:56
professionalMycroft Holmes11-Jun-15 14:56 
GeneralRe: Great Confusing Problem with VB.NET developers Pin
Philip Murray11-Jun-15 22:07
Philip Murray11-Jun-15 22:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.