I have done decompile the code. But instead of display string, it display an negative number. How can I find the original string?
My decompiled code like this:
string str = .(-812265445);
it should be:
string str = "My string";
Please help
Note, when I add reference to project and debug, it can see the string "My string" not .(-812265445);
When I use another disassembler program, it display:
string str = ACK. STX(-812265445);
I guest ACK and STX are binary characters.
Many thanks
Response for your answers are two pictures I took from ILSpy for better imagine:
Decompiling won't return the original code.
Your example looks like a simple 'load register with address of string, do something with it...'.
The compiler doesn't put strings (or any data) inline with the instructions, the data, strings, numbers, are all moved to appropriate sections. Since this is a string constant, it's likely moved into the .data or .rodata section.
Converting your -812265445 number to hex makes it a little clearer, since it becomes 0xCF95D01B, a valid address to store something. If your output-radix is signed decimal (the usual it seems), then addresses often end up huge negative values. Convert them to hex or change your defaults to let you see (or more easily grok) where they point.
From this (your comment above), it's plain there is a 'load register with address of the string' on line 0x12 (L_0012), a call to 'string::...' to convert it (I suppose) and then a store to put the resultant 'string' pointer somewhere.
Then you do it again on lines 0x1D-0x27. Maybe with a 4 byte long const char string there (since the first and second load (ldc.i4) addresses are 5 units apart. (4 chars + 0 terminator).
Use your debugger or whatever you have to display the memory at those addresses shown (use whatever's actually in your current program disassembly though) and see what's there. Explore!