Click here to Skip to main content
15,881,812 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
OriginalGriff5-Jul-12 1:10
mveOriginalGriff5-Jul-12 1:10 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
Ankush Bansal5-Jul-12 3:28
Ankush Bansal5-Jul-12 3:28 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
Ankush Bansal5-Jul-12 3:38
Ankush Bansal5-Jul-12 3:38 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
Bernhard Hiller5-Jul-12 3:39
Bernhard Hiller5-Jul-12 3:39 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
Ankush Bansal5-Jul-12 3:41
Ankush Bansal5-Jul-12 3:41 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
Sentenryu5-Jul-12 3:46
Sentenryu5-Jul-12 3:46 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
RobCroll5-Jul-12 13:57
RobCroll5-Jul-12 13:57 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
Sentenryu6-Jul-12 0:40
Sentenryu6-Jul-12 0:40 
Verify again, it's private, i just tested to make sure. ALL members of a class are private for default, there is no exception to constructors, i just tested like this:

My class:
C#
public class Form
{
    Form() {

    }
 }


i used a project that i was working on, so this is a MVC 3 project, my controller:

C#
public class SurveyController : Controller
{
    public SurveyController() {

        Form form = new Form();
    }

}


this yields this compiler error:

Error	1	'FormularioAvaliacaoSaude.Models.Formulario.Formulario()' is inaccessible due to its protection level	C:\workspace\FormularioAvaliacaoSaude\FormularioAvaliacaoSaude\Controllers\PesquisaController.cs	22	31	FormularioAvaliacaoSaude


(sorry for don't translating the paths on the error message, but i fell like i'll screw it up if i do it...)

by this error i make the conclusion that the default Access Modifier.

...

Just run into this on MSDN:


MSDN wrote:
The declaration of the empty constructor prevents the automatic generation of a default constructor. Note that if you don't use an access modifier with the constructor it will still be private by default. However, the private modifier is usually used explicitly to make it clear that the class cannot be instantiated.

I'm brazilian and english (well, human languages in general) aren't my best skill, so, sorry by my english. (if you want we can speak in C# or VB.Net =p)

GeneralRe: got another codebase to work on... its full of surprises!!! Pin
RobCroll6-Jul-12 3:30
RobCroll6-Jul-12 3:30 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
BobJanova9-Jul-12 1:13
BobJanova9-Jul-12 1:13 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
RobCroll5-Jul-12 14:06
RobCroll5-Jul-12 14:06 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
OriginalGriff5-Jul-12 21:11
mveOriginalGriff5-Jul-12 21:11 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
Sentenryu6-Jul-12 0:43
Sentenryu6-Jul-12 0:43 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
OriginalGriff6-Jul-12 0:53
mveOriginalGriff6-Jul-12 0:53 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
Sentenryu6-Jul-12 1:07
Sentenryu6-Jul-12 1:07 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
OriginalGriff6-Jul-12 1:15
mveOriginalGriff6-Jul-12 1:15 
GeneralRe: got another codebase to work on... its full of surprises!!! Pin
Sentenryu6-Jul-12 1:31
Sentenryu6-Jul-12 1:31 
GeneralWhat about this gem? Pin
Ankush Bansal4-Jul-12 23:20
Ankush Bansal4-Jul-12 23:20 
GeneralRe: What about this gem? PinPopular
VallarasuS5-Jul-12 0:17
VallarasuS5-Jul-12 0:17 
GeneralRe: What about this gem? Pin
Ankush Bansal5-Jul-12 3:31
Ankush Bansal5-Jul-12 3:31 
GeneralRe: What about this gem? Pin
RobCroll5-Jul-12 13:46
RobCroll5-Jul-12 13:46 
GeneralRe: What about this gem? Pin
Ankush Bansal13-Jul-12 6:20
Ankush Bansal13-Jul-12 6:20 
GeneralRe: What about this gem? Pin
John Hunley18-Jul-12 6:07
John Hunley18-Jul-12 6:07 
JokeMamas, Don't Let Your Babies Grow Up to be Coders PinPopular
Keith Chuvala4-Jul-12 10:25
Keith Chuvala4-Jul-12 10:25 
GeneralRe: Mamas, Don't Let Your Babies Grow Up to be Coders Pin
gavindon4-Jul-12 13:53
gavindon4-Jul-12 13:53 

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.