c# vocabulary

Posted by foxjazz on Geeks with Blogs See other posts from Geeks with Blogs or by foxjazz
Published on Fri, 09 Nov 2012 06:04:11 GMT Indexed on 2012/11/09 11:05 UTC
Read the original article Hit count: 211

Filed under:
I have probably seen and used the word Encapsulation 4 times in my 20 years of programming.
I now know what it is again, after an interview for a c# job. Even though I have used the public, private, and protected key words in classes for as long as c# was invented. 

I can sill remember coming across the string.IndexOf function and thinking, why didn't they call it IndexAt.

Now with all the new items like Lambda and Rx, Linq, map and pmap etc, etc. I think the more choices there is to do 1 or 2 things 10 or 15 differing ways, the more programmers think to stay with what works and try and leverage the new stuff only when it really becomes beneficial.

For many, the new stuff is harder to read, because programmers aren't use to seeing declarative notation.
I mean I have probably used yield break, twice in my project where it may have been possible to use it many more times. Or the using statement ( not the declaration of namespace references) but inline using. I never really saw a big advantage to this, other than confusion. It is another form of local encapsulation (oh there 5 times used in my programming career) but who's counting?  THE COMPUTERS ARE COUNTING!

In business logic most programming is about displaying lists, selecting items in a list, and sending those choices to some other system or database to keep track of those selections. What makes this difficult is how these items relate to one, each other, and two externally listed items.

Well I probably need to go back to school and learn c# certification so I can say I am an expert in c#. Apparently using all aspects of c# (even unsafe code) in my programming life, doesn't make me certified, just certifiable.

This is a good time to sign off:
Fox-jazzy

© Geeks with Blogs or respective owner