Presentation: 27/05/2008 - GCDNSIG - Bindable LINQ

Update: SyncLINQ has been released under the name Bindable LINQ, and is available from CodePlex
I’ll be presenting my code camp talk "Reactive Programming with SyncLINQ" next Tuesday, 27th May, at the Gold Coast .NET Special Interest Group. The event is being hosted at Bond University, at 6pm. I look forward to seeing you there.

Snippet: Strongly typed property names

Last night at the QMSDNUG someone asked whether it was possible to implement INotifyPropertyChanged without hard-coding property names as strings inside code. For example, you would normally write:
public string FirstName
{
get { return _firstName; }
set
{
_firstName = […]