D
Donnie Fuqua
Can anyone tell me if there is a way in C# to do what typedef or #define
could do
in Visual C++?
I want to do something like:
#ifdef SMALL
typedef ushort APPUINT;
#else
typedef ulong APPUINT;
#endif
This way I can have a configuration where I just use /define SMALL to get a
copy that
can't handle large data sets, but has a smaller memory footprint. (It's a
neural network.)
Any help is appreciated.
Donnie Fuqua
(e-mail address removed)
could do
in Visual C++?
I want to do something like:
#ifdef SMALL
typedef ushort APPUINT;
#else
typedef ulong APPUINT;
#endif
This way I can have a configuration where I just use /define SMALL to get a
copy that
can't handle large data sets, but has a smaller memory footprint. (It's a
neural network.)
Any help is appreciated.
Donnie Fuqua
(e-mail address removed)