For the purposes of setting a value in Active Directory I would like to convert a long to an unsigned 8-byte integer, for assignment to an AD property.

How can I do this?

link|improve this question

ulong perhaps? – Ben May 26 '10 at 0:39
feedback

2 Answers

up vote 2 down vote accepted

A simple cast can cause problems if the long is negative and may result in an OverflowException. You'll need to use the unchecked syntax to ensure it is cast properly.

ulong myUnsignedValue = unchecked( (ulong)originalLongValue );
link|improve this answer
feedback

Cast the long to a ulong.

More info here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.