Hi, I can't seem to get rid of this warning for the following line of code:
d.word[wrdIndex++] = d.GetWord(english) | (ulong)i;
the warning applies to the code after the assignment operator. the method GetWord returns a ulong. I've tried the following to no avail:
d.word[wrdIndex++] = (d.GetWord(english) | (ulong)i);
d.word[wrdIndex++] = d.GetWord(english) | ((ulong)i);
d.word[wrdIndex++] = ((ulong)d.GetWord(english)) | ((ulong)i);
Anyone have any ideas?