I have launched a new Web site to demo ASP.NET scripts. It is http://www.dhvrm.com.
I decided to create the site after reviewing my last couple of ASP.NET entries on this site and discovering that they have some serious errors. I’ll be updating each with new posts as time allows.
For the moment, there isn’t much to see [...]
Archive of posts tagged C++
New Site For ASP.NET Demos: dhvrm.com
Objects (Classes) Explained In Very Simple Terms
One of the most common questions on Yahoo! Answers is how classes or objects, or the parts of a class / object, such as properties, methods and events, work.
Here’s a gross simplification of how classes and objects work. Most of this is lifted from a previous blog entry, Interpreting A C# Class Code Structure.
Classes / [...]
Variable Scope Made Simple
Recently asked on Yahoo! Answers:
What does this statement mean? “Local variables are local to a function or a procedure.”?
What it means, in a nutshell, is if you declare a variable inside a function or procedure, you cannot get the value of that variable from outside that function or procedure.
