Click here to Skip to main content
15,891,375 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: I just had to reference an article I wrote 14 years ago Pin
Marc Clifton17-May-18 11:57
mvaMarc Clifton17-May-18 11:57 
GeneralRe: I just had to reference an article I wrote 14 years ago Pin
Daniel Pfeffer17-May-18 18:41
professionalDaniel Pfeffer17-May-18 18:41 
GeneralSilent updates... Pin
dandy7217-May-18 7:27
dandy7217-May-18 7:27 
GeneralRe: Silent updates... Pin
Richard Deeming17-May-18 7:41
mveRichard Deeming17-May-18 7:41 
GeneralRe: Silent updates... Pin
Ron Anders17-May-18 7:53
Ron Anders17-May-18 7:53 
GeneralRe: Silent updates... Pin
the goat in your machine17-May-18 16:52
the goat in your machine17-May-18 16:52 
GeneralRe: Silent updates... Pin
dandy7218-May-18 3:00
dandy7218-May-18 3:00 
GeneralIt's the fault of that lot in the forums I tell you. Pin
Pete O'Hanlon17-May-18 5:40
mvePete O'Hanlon17-May-18 5:40 
If you saw this, what would you say I was doing?
C#
public class BrokenFizzBuzz
{
  public void WowMeWithFizzBuzz(int upperLimit)
  {
    for (int count = 0; count < upperLimit; count++)
    {
      if (count % 3 == 0)
      {
        Console.WriteLine($"{count} - Fizz");
      }

      if (count % 5 == 0)
      {
        Console.WriteLine($"{count} - Buzz");
      }

      if (count % 5 == 0 && count % 3 == 0)
      {
        Console.WriteLine($"{count} - FizzBuzz");
      }
    }
  }
}
(Yes, I know it's broken and doesn't do what you'd expect from FizzBuzz, that's deliberate).

I've decided to write up a series about using Visual Studio to help debug applications. It all started with a thread in the C# forum this week where it was suggested that debugging wasn't being taught. This lead me to think that there was a gap here that needed addressing. So, I'm writing about how to go about debugging. We're starting with the C# equivalent of printf. So the question is, is this useful? Is it only a minority that don't know how to debug or is this a wider issue that needs to be taught? If it's a minority of developers, then am I wasting my time here? Who put the bang in the BangShangALang and who put bop in the BopShooBopShooBop?
This space for rent

GeneralRe: It's the fault of that lot in the forums I tell you. Pin
#realJSOP17-May-18 5:59
mve#realJSOP17-May-18 5:59 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
Pete O'Hanlon17-May-18 6:29
mvePete O'Hanlon17-May-18 6:29 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
#realJSOP17-May-18 6:31
mve#realJSOP17-May-18 6:31 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
Richard Deeming17-May-18 7:03
mveRichard Deeming17-May-18 7:03 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
#realJSOP17-May-18 7:41
mve#realJSOP17-May-18 7:41 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
raddevus17-May-18 10:02
mvaraddevus17-May-18 10:02 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
dandy7217-May-18 7:33
dandy7217-May-18 7:33 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
#realJSOP17-May-18 7:42
mve#realJSOP17-May-18 7:42 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
Dan Neely18-May-18 2:48
Dan Neely18-May-18 2:48 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
Jim_Snyder18-May-18 3:49
professionalJim_Snyder18-May-18 3:49 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
RandyBuchholz17-May-18 9:00
RandyBuchholz17-May-18 9:00 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
OriginalGriff17-May-18 5:59
mveOriginalGriff17-May-18 5:59 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
#realJSOP17-May-18 6:37
mve#realJSOP17-May-18 6:37 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
dandy7217-May-18 7:35
dandy7217-May-18 7:35 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
#realJSOP17-May-18 7:44
mve#realJSOP17-May-18 7:44 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
dandy7217-May-18 7:46
dandy7217-May-18 7:46 
GeneralRe: It's the fault of that lot in the forums I tell you. Pin
GKP199217-May-18 17:58
professionalGKP199217-May-18 17:58 

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.