Activity overview
Latest activity by lopin123
Error decompile LINQ syntax...
I used version 7.1.0.143 ...but why this code cannot resolve by refelector..Pls help me...private FileStorageFolder GetCapsuleContentFolder(FileStorageDataContext db)
{
IQueryable...
#haleyJason
Thanks for your quick response. This the Code for GetCommandForCaller : protected Command GetCommandForCaller(string propertyName, string id, string category)
{
CommandManager commandManager = CommandManager;
Command command = null;
if (commandManager != null)
{
command = commandManager.Commands[id];
}
if (command == null)
{
command = CreateCommand(propertyName, id, category);
if (commandManager != null)
{
commandManager.Commands.Add(command);
return command;
}
CommandsToBeAdded.Add(command);
}
return command;
}
so I can't create ExploreCommand.resx manualy? what do you think? / comments
#haleyJason
Thanks for your quick response. This the Code for GetCommandForCaller :protected Command GetCommandForCaller(string propertyName, string id, string category)
{
...
This is Resource file or not?
I've been decompiled an aplication to learn about how they handle command. But I do not know exactly what type of the following file.because the file is inherit from superclass that inherit from sy...
Thanks for you Clive...In order to re-compile the source,what can I do to know at minimal a object or I just can delete the source and making my own object? / comments
Thanks for you Clive...In order to re-compile the source,what can I do to know at minimal a object or I just can delete the source and making my own object?
What's should I do with this error...
any solution/suggest for this problem using .NET Reflector ver 6.5.0.135?[CompilerGenerated]
private sealed class <GetEnumerator>d__0 : IEnumerator<object>, IEnumerator, IDispos...