Hi all,
something very strange happens to me and I don't know how to move forward.
I created a clickonce application in C#.
Development side works ok.
once installed on the machine, it seems that the instructions do not behave the same.
The instruction is this:
I also tried changing Except by doing Where, but it doesn't change.
It basically checks me the difference on two lists of strings.
When I debug, it works fine (return 1).
Once installed, it doesn't make the correct diffs (return 4).
The sources are the same in both.
Mmh!
Suggestions?
thank you
A.
something very strange happens to me and I don't know how to move forward.
I created a clickonce application in C#.
Development side works ok.
once installed on the machine, it seems that the instructions do not behave the same.
The instruction is this:
C#:
var res = first
.Select(x => x.Code)
.Except(second.Select(y => y.Code))
.ToList();
I also tried changing Except by doing Where, but it doesn't change.
It basically checks me the difference on two lists of strings.
When I debug, it works fine (return 1).
Once installed, it doesn't make the correct diffs (return 4).
The sources are the same in both.
Mmh!
Suggestions?
thank you
A.