Illegal forward reference
        Posted  
        
            by Troy
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Troy
        
        
        
        Published on 2010-04-03T01:45:51Z
        Indexed on 
            2010/04/03
            1:53 UTC
        
        
        Read the original article
        Hit count: 460
        
When trying to declare a static array in my program I receive a static forward reference error, i'm not sure what I am doing wrong here...
static Square fieldGrid [ ] [ ] = new Square [ ROWSIZE ] [ COLSIZE ];
this is what I am using.
© Stack Overflow or respective owner