I have a class:
public class LED { public System.Windows.Forms.Label lbl; public LED(System.Windows.Forms.Label lblLED) { lbl = lblLED;
http://msdn.microsoft.com/en-us/library/5724t6za%28VS.80%29.aspx
you cant use references to fields to initialize fields in the same class outside of a method, maybe because the order in which the reference variables are initialized is not guaranteed.