Skip to content

Instantly share code, notes, and snippets.

@tmiz
Created December 15, 2011 19:06
Show Gist options
  • Save tmiz/1482354 to your computer and use it in GitHub Desktop.
Save tmiz/1482354 to your computer and use it in GitHub Desktop.
KVOTest.cs 003
using System;
using MonoMac.Foundation;
namespace KVOTestClock
{
[Register("KVOTest")]
public class KVOTest : NSObject
{
public KVOTest ()
{
Title = (NSString)"Hello";
}
[Export("title")]
NSString Title { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment