Hi. In C++ ie we can do this:
code.cpp
#include vars.h
main()
{
if var1 == 1 { printf("ok"); }
return true; }
The point is not the code itself, but that #include.
I'd like to have a *.cs file containing some numeric variables.
But not a Class, just a normal text file containing variables like const int var1 = 1;
How can I do that?