Activity overview
Latest activity by couldnotforget
another question:
I am from China, Chinese string can not be transformed when the language is not C# (such as VB.net,IL)
string mystr="请选择目标进程"(C#)
string mystr="\u8bf7\u9009\u62e9\u76ee\u6807\u8fdb\u7a0b" (Others)
But ReflexIL can / comments
another question:
I am from China, Chinese string can not be transformed when the language is not C# (such as VB.net,IL)
string mystr="请选择目标进程"(C#)
string mystr="\u8bf7\u9009\u62e9\u76ee\u6807\u8fd...
Clive Tong wrote:
I've changed the projects that are emitted to match that suggested format.
in beta 5? / comments
Clive Tong wrote:
I've changed the projects that are emitted to match that suggested format.
in beta 5?
Decompie event
Source Code:
public event MethodInvoker MyEvent;
Decompile Code:
public event MethodInvoker MyEvent
{
add
{
MethodInvoker invoker2;
MethodInvoker myEvent = this.MyEvent;
do
{
invoker2 = myEvent;
Me...
Oh,my god ,I know;
<PropertyGroup>
<Configuration Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">Debug</Configuration>
......
In Vs2010, "Configuration" is not a subnode
like this:
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
..... / comments
Oh,my god ,I know;
<PropertyGroup>
<Configuration Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">Debug</Configuration>
......
In Vs2010, "Configuration" is not a subnode
like this:
<...
alehandro wrote:
report to MS? [image]
No, this bug is from Reflector.
The .csproj file created by Reflector is bad format for VS2010. / comments
alehandro wrote:
report to MS?
No, this bug is from Reflector.
The .csproj file created by Reflector is bad format for VS2010.
I had installed vs2008 just now, and I found that there was no error in vs2008.
So, this bug is only existed in vs2010 / comments
I had installed vs2008 just now, and I found that there was no error in vs2008.
So, this bug is only existed in vs2010
No reply? / comments
No reply?
I had tested once again.
I create a new WindowsForm Application,and don't write any code myself,and then compile it.
No matter which TargetFrameworkVerion my program is , after decompiling, I will get this error from VS2010. / comments
I had tested once again.
I create a new WindowsForm Application,and don't write any code myself,and then compile it.
No matter which TargetFrameworkVerion my program is , after decompiling, I will ...
This bug has been existed for a long time. / comments
This bug has been existed for a long time.
When the language is IL,unicode string can't be tranformed
I am from China, Chinese string can not be transformed when the language is IL
"请选择目标进程" <---> "\u8bf7\u9009\u62e9\u76ee\u6807\u8fdb\u7a0b"
But the ReflexIL can