M
Marge Inoferror
In C, I might do this:
#define MAX_COLS 50;
#define MAX_ROWS 10;
In C# that seems to be an error!
What's the best way of accomplishing the same thing?
I tried this, but I don't know if this is the way to go:
static const int maxCols = 50;
static const int maxRows = 10;
Thanks,
Marge
#define MAX_COLS 50;
#define MAX_ROWS 10;
In C# that seems to be an error!
What's the best way of accomplishing the same thing?
I tried this, but I don't know if this is the way to go:
static const int maxCols = 50;
static const int maxRows = 10;
Thanks,
Marge