View Single Post
  #7 (permalink)  
Old February 18th, 2008, 08:38 AM
samjudson's Avatar
samjudson samjudson is offline
Friend of Wrox
Points: 4,453, Level: 28
Points: 4,453, Level: 28 Points: 4,453, Level: 28 Points: 4,453, Level: 28
Activity: 60%
Activity: 60% Activity: 60% Activity: 60%
 
Join Date: Aug 2007
Location: Newcastle, , United Kingdom.
Posts: 1,359
Thanks: 0
Thanked 31 Times in 31 Posts
Default

Right, you didn't say you wanted to 'change' the value, just 'access' it, so what I wrote above is a read only property.

public bool MyProperty
{
  get
  {
    return true;
  }
  set
  {
    // do something with 'value' here.
    Console.WriteLine(value);
  }
}

/- Sam Judson : Wrox Technical Editor -/
Reply With Quote