This is a migrated thread and some comments may be shown as answers.

C# decompile help

1 Answer 76 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
James
Top achievements
Rank 1
James asked on 10 Dec 2013, 07:37 PM
I need to know if this:
int? sendStatement = info.get_SendStatement();
 if ((sendStatement.GetValueOrDefault() != 10 ? false : sendStatement.HasValue) && info.get_UseAttachments())
 {

Is the equivalent of this:
if (info.SendStatement == 10 && info.UseAttachments)
            {

1 Answer, 1 is accepted

Sort by
0
Momchil
Telerik team
answered on 11 Dec 2013, 09:32 AM
Hi,

The answer is yes.

The reason these "get_SendStatement" and "get_UseAttachments" methods appear is because JustDecompile failed to resolve the assembly these properties (and the class for the object "info") have been declared in.

Regards,
Momchil
Telerik
Tell us what you think about JustDecompile. Your opinion matters! You can use our forum, or our JustDecompile UserVoice website for feature requests.
Tags
General Discussions
Asked by
James
Top achievements
Rank 1
Answers by
Momchil
Telerik team
Share this question
or