Game of Thrones and The Lord of the Rings
franky1987
Posts
-
Name two things everyone else has seen but you -
New lifeHi guys!! I'm thinking of moving myself in another country, possibly US or Canada, beacause of many reasons: first of all to have a new life experience and better work perspective. I work as a software developer for an italian ISV. What I'd like to do in the country where I'm (hopfully) gonna move is a similar job. Do you have any hint about a good place to go, where to look to find a job and so on? Thanks
-
c# Casting v As operatorb. it's better, because if the cast is wrong, the member would be null ... so you don't have to surround your code with a "try {} catch {}" every few lines. :)
-
What is your best code comment this year?// I don't know what this method does ... but it works !!
-
What is the most common error in a .Net application?Hi all, Thanks to VS2008 I put in all my applications an assembly full of Extension Methods that are so useful when I'm in production. One of these extension method is called 'IsNullOrTrimmedEmpty()'. Actually it just check if a string refence is null and than, if it isn't, if the trimmed value of the string equals to "", and return me a bool value. Not too much advanced, but very helpful!!