Click here to Skip to main content
15,924,507 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: Thor Pin
Pete O'Hanlon30-Oct-13 11:28
mvePete O'Hanlon30-Oct-13 11:28 
GeneralRe: Thor Pin
Dalek Dave30-Oct-13 12:01
professionalDalek Dave30-Oct-13 12:01 
GeneralRe: Thor Pin
R. Giskard Reventlov30-Oct-13 12:35
R. Giskard Reventlov30-Oct-13 12:35 
GeneralRe: Thor Pin
Richard Deeming31-Oct-13 2:26
mveRichard Deeming31-Oct-13 2:26 
GeneralRe: Thor Pin
_Maxxx_30-Oct-13 12:59
professional_Maxxx_30-Oct-13 12:59 
GeneralRe: Thor Pin
Richard Deeming31-Oct-13 2:28
mveRichard Deeming31-Oct-13 2:28 
GeneralRe: Thor Pin
_Maxxx_30-Oct-13 13:00
professional_Maxxx_30-Oct-13 13:00 
GeneralYech...that's ugly code. Pin
OriginalGriff30-Oct-13 9:44
mveOriginalGriff30-Oct-13 9:44 
I've just found out that this works:
C#
int[,] numbers = new int[,] { { 11, 21, 31 }, { 12, 22, 32 }, { 13, 23, 33 }, { 14, 24, 34 }, { 15, 25, 35 }, { 16, 26, 36 }, { 17, 27, 37 }, { 18, 28, 38 } };
foreach (int i in numbers)
    {
    Console.WriteLine(i);
    }

Am I alone in thinking that's really nasty and unobvious?
The only instant messaging I do involves my middle finger.

English doesn't borrow from other languages.
English follows other languages down dark alleys, knocks them over and goes through their pockets for loose grammar.

GeneralRe: Yech...that's ugly code. Pin
harold aptroot30-Oct-13 9:47
harold aptroot30-Oct-13 9:47 
GeneralRe: Yech...that's ugly code. Pin
OriginalGriff30-Oct-13 9:49
mveOriginalGriff30-Oct-13 9:49 
GeneralRe: Yech...that's ugly code. Pin
Simon_Whale30-Oct-13 9:59
Simon_Whale30-Oct-13 9:59 
GeneralRe: Yech...that's ugly code. Pin
Richard Deeming30-Oct-13 10:03
mveRichard Deeming30-Oct-13 10:03 
GeneralRe: Yech...that's ugly code. Pin
Kenneth Haugland30-Oct-13 10:14
mvaKenneth Haugland30-Oct-13 10:14 
AnswerRe: Yech...that's ugly code. Pin
Nish Nishant30-Oct-13 10:28
sitebuilderNish Nishant30-Oct-13 10:28 
GeneralRe: Yech...that's ugly code. PinPopular
MehGerbil30-Oct-13 10:34
MehGerbil30-Oct-13 10:34 
GeneralRe: Yech...that's ugly code. Pin
ZurdoDev30-Oct-13 10:35
professionalZurdoDev30-Oct-13 10:35 
GeneralRe: Yech...that's ugly code. Pin
CPallini30-Oct-13 10:46
mveCPallini30-Oct-13 10:46 
GeneralRe: Yech...that's ugly code. Pin
Jörgen Andersson30-Oct-13 12:04
professionalJörgen Andersson30-Oct-13 12:04 
GeneralRe: Yech...that's ugly code. Pin
OriginalGriff30-Oct-13 12:18
mveOriginalGriff30-Oct-13 12:18 
QuestionRe: Yech...that's ugly code. Pin
Super Lloyd30-Oct-13 17:48
Super Lloyd30-Oct-13 17:48 
AnswerRe: Yech...that's ugly code. Pin
OriginalGriff30-Oct-13 23:02
mveOriginalGriff30-Oct-13 23:02 
GeneralRe: Yech...that's ugly code. Pin
jschell1-Nov-13 13:15
jschell1-Nov-13 13:15 
GeneralRe: Yech...that's ugly code. Pin
Jörgen Andersson30-Oct-13 21:05
professionalJörgen Andersson30-Oct-13 21:05 
GeneralRe: Yech...that's ugly code. Pin
_Maxxx_30-Oct-13 12:58
professional_Maxxx_30-Oct-13 12:58 
GeneralRe: Yech...that's ugly code. Pin
bryce30-Oct-13 17:24
bryce30-Oct-13 17:24 

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.