Click or type ~ to show Console
Type Ctrl-C to close console. Type 'wat?' to find out how this console was created.
Welcome to the Iloggable Interactive Console. You can navigate posts either by file hierarchy with cd [path] or via paged posts lists using the posts [page] command. You can navigate to a new post with the go [path|#id].

ILoggable

A place to keep my thoughts on programming

Tag Archives: automatic property

Struct’s via Automatic Properties can be tricky

Here’s a bit of code i just got through debugging… public Point Point { get; private set; } public void Offset(Point origin) { Point.Offset(-origin.X, -origin.Y); } Can you tell what’s wrong here? Let’s just say that the Offset won’t take. … Continue reading

January 15, 2008 .net ,

Automatic properties syntax wish

Just a quick thought on on Automatic properties in C# 3.0 (.NET 3.5, Orcas, whathaveyou). I, like most .NET developers, have spent too much time writing private string foo; public string Foo { get { return foo; } set { … Continue reading

September 23, 2007 .net , ,