Blog Planet Wiki Why is this page pink?
Feed Feed It

Sample Code

Tuesday, May 25, 2004 09:43 AM

Sample C# Properties Code Snippetpublic bool someFlag = false;public bool Flag{set{someFlag = value;}get{return someFlag;}}
Small Perl Code Snippet....# Perl code hereprint "Hello world!";