When I open my assembly in JustDecompile, I see properties and indexers represented as such:
if
(!service.InputParameters.Contains(
"Target"
) || !(service.InputParameters[
"Target"
]
is
Entity))
{
return
;
}
item = (Entity)service.InputParameters[
"Target"
];
But, when I export the source code using 'Create Project...' these same lines will look like this:
if
(!service.get_InputParameters().Contains(
"Target"
) || !(service.get_InputParameters().get_Item(
"Target"
)
is
Entity))
{
return
;
}
item = (Entity)service.get_InputParameters().get_Item(
"Target"
);
This, of course, won't compile, and would require a lot of cleanup.
I've worked around it by simply copying and pasting the code from the JustDecompile window into my Visual Studio window. But, it would be nice to not have to, since I don't want to risk missing a file or pasting the wrong source.