Seriously?
-
You can manually set values for variables while debugging C#, so initialization isn't necessary (but convenient nonetheless, although I'd remove it when done debugging) :)
Best, Sander arrgh.js - Bringing LINQ to JavaScript SQL Server for C# Developers Succinctly Object-Oriented Programming in C# Succinctly
Sure, but why not simply code the value you want?
-
BucketList: 1. Learn how to write code. 2. Improve this code. 3. Climb the Mount Everest.
Best, Sander arrgh.js - Bringing LINQ to JavaScript SQL Server for C# Developers Succinctly Object-Oriented Programming in C# Succinctly
4. Stay there, not bothering anybody.
-
4. Stay there, not bothering anybody.
A lot of people should add that to their list :laugh:
Best, Sander arrgh.js - Bringing LINQ to JavaScript SQL Server for C# Developers Succinctly Object-Oriented Programming in C# Succinctly
-
That was my first thought: It should generate a stack overflow (regardless of the language). I'm not so skillfull with C# but recent C++ compilers will throw a warning for such code. And I guess the C# compiler will do that too (both with higher warning level). Then they did not even test their code but compile it also with a low warning level.
This usually happens by accident when they implement the property before defining the accompanying field. It's happened to me a couple of times. I compile at the highest warning level and VS2013 doesn't catch this error at compile time.A "self-referencing property" compile-time warning would be nice to have.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013 -
public int Lenght
{
get { return this.Lenght; }
}[Code from here](https://github.com/AdunanzA/Evolution-DHT/blob/master/Evolution.Dht/Kademlia/BucketList.cs) :sigh: :doh: :rolleyes: :omg: :wtf: X| :thumbsdown: Maybe that's how I should sign posts. :laugh:
Latest Article - Class-less Coding - Minimalist C# and Why F# and Function Programming Has Some Advantages Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
-
isnt that a recursive call which should crash the stack :confused:
Press F1 for help or google it. Greetings from Germany
KarstenK wrote:
isnt that a recursive call which should crash the stack
Exactly.
Latest Article - Class-less Coding - Minimalist C# and Why F# and Function Programming Has Some Advantages Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
-
kmoorevs wrote:
Is it a Spanish compiler?
And why should that be funny?
M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.
There was a video by Veritasium, on how Spanish needs more or less double the words in order to convey the same amount of information, compared to English. Relate the video to the fact that the 'get length' appeared to have been written twice, you get a joke. Well it's funny now that I had to explain everything but nonetheless, nice effort kmoorevs.
-
Well, since that's the wrong spelling for 'length' it's safe to assume it will only be called by an error - so if it recalls itself until it crashes, nothing's really been lost, anyway. Thus, the balance is restored in this, the best of all possible worlds.
"The difference between genius and stupidity is that genius has its limits." - Albert Einstein
"If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010
-
public int Lenght
{
get { return this.Lenght; }
}[Code from here](https://github.com/AdunanzA/Evolution-DHT/blob/master/Evolution.Dht/Kademlia/BucketList.cs) :sigh: :doh: :rolleyes: :omg: :wtf: X| :thumbsdown: Maybe that's how I should sign posts. :laugh:
Latest Article - Class-less Coding - Minimalist C# and Why F# and Function Programming Has Some Advantages Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
-
It's not about patterns, it's about stupid code: that won't return, it will overflow the stack. Shows the level of testing they did on the rest of the code as well. :sigh:
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!
What else would expect from a coder who can't spell 'length' ?
-
What else would expect from a coder who can't spell 'length' ?
This is why I use a VS extension: Spell Checker - Visual Studio Marketplace[^] it marks up my strings and comments, if not my variable names!
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!
-
public int Lenght
{
get { return this.Lenght; }
}[Code from here](https://github.com/AdunanzA/Evolution-DHT/blob/master/Evolution.Dht/Kademlia/BucketList.cs) :sigh: :doh: :rolleyes: :omg: :wtf: X| :thumbsdown: Maybe that's how I should sign posts. :laugh:
Latest Article - Class-less Coding - Minimalist C# and Why F# and Function Programming Has Some Advantages Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
How would this even work, given that "Lenght" is misspelled in both places?
-
And what is "Seriously?" the Problem? I would skip such minor things. Bruno :confused: The longer I'm here the more I have a Feeling that programmers discuss about how to Programm, and because of endless discussions about pattern and this and that they are not able to do their Job ;)
-
Well, I worked in Miami for nine years, and not once did I see one of my Cuban or Mexican colleagues code anything like this:
// Comment out if not using the Spanish version of the compiler
// Por favor comente si no esta utilizando la version espannol del compiladorentero publico Longidut
{
obtener { devolve ese.Longidut; }
}This sort of thing is just a classic example of a programmer who is just too lazy to correct the property name where it is used. Much easier to take the easy way out and keep the property name misspelled. We had a programmer like this on a COBOL project. 15 years after he was fired, we are still living with the sh*tty code he wrote. There is no bandwidth in my team to rip it all out and replace it, so I have imposed a policy of "replace, don't fix" whenever we run into an issue with one of this guy's modules. Any developer on my team who tries to get away with this kind of stuff now gets dealt with abruptly. There is no excuse for it.
-
I suspect that the code comes from a keyboard dyslexic like myself. Since he/she regularly mis-types lenght (see?) they though it would be a good idea to cater for it... unofrtuantely they misspselt it in the function too.
I recently started working with Python. The IDE I use highlights every potential typo and stylistic error as I type. A variable name like Lenght would be flagged immediately, even though it is syntactically legal. My goal when coding with the IDE is zero flaggings of code. In the long run it is worth it.