Is there any merit (or folly!) in storing a large array, that frequently needs to be accessed globally, within a class like so:

public class classMap{
        
        public static int[MAPSIZE][MAPSIZE] map;

}

Or is there a proper 'D' way to do this?

TIA


Reply via email to