1. Using a #define'd integer to create a #define'd string
2. [OT] User-Defined string Functions MS SQL Server 2005 T-SQL CLR C#
3. [OT] User-Defined string Functions MS SQL Server 2005 T-SQL C# CLR - CSharp/C#
4. Why is an exe-file include defined strings ?
Hi. Hooooooooo~
Listen...
I have a next source:
#define COMM_DATA ":300:%s"
And next, I compiled the source.
And as result, I got 'comm.exe'
I opened the comm.exe.
And I saw next result.
------------------------------------------------
.....
....
abnormal program termination
R6009
- not enough space for environment
Microsoft Visual C++ Runtime Library
:300:%s
.....
....
------------------------------------------------
Why is comm.exe include defined string(COMM_DATA)?
In case I use 'const char', I can hide the COMM_DATA.
But another strings - exam(.Format("hi - %s"), hi2);...
I can see 'hi - %s' in comm.exe.
why? how?
Please tell me why?
5. define string class which implements linked list at backend
Can I do this: #define MYSTRING "ABC" . . . char mychar = MYSTRING[0]; . . . -Thanks, s