﻿void ControlTextDidBeginEditing (NSNotification notification)
{
	// Extract the NSFieldEditor key from the array;
	var fieldEditor = notification.UserInfo ["NSFieldEditor"];

	// The object that posted the notification
	var postingObject = notification.Object;
}