property setter + isDirty
CodeKeep C# Feed Giugno 10th, 2008
Description: property setter + isDirty
Link: http://www.codekeep.net/snippets/ea77a246-3f0d-426d-bf58-b1a66c131516.aspx
public string MyVariable
{
set
{
_isDirty |= (_myVariable != value);
_myVariable = value;
}
}





