C# Console/CLI Interpreter?

Linqpad – I use it like this all the time. http://www.linqpad.net/ Don’t be misled by the name – that just describes the original motivation for it, not its functionality. Just recently he released a version with proper statement completion – that’s a chargeable add-on (the core tool is free), but a minute amount of money … Read more

What does the “private” modifier do?

There’s a certain amount of misinformation here: “The default access modifier is not private but internal” Well, that depends on what you’re talking about. For members of a type, it’s private. For top-level types themselves, it’s internal. “Private is only the default for methods on a type” No, it’s the default for all members of … Read more