Is there a better (shorter?) way than the following?

let cpucount = System.UInt16.Parse( reader.GetInt32(3).ToString() )
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted
let i = uint16 42

See also

MSDN docs

and the 'casts' section of

What does this C# code look like in F#?

link|improve this answer
It's unsigned (uint) – Dario Mar 14 '10 at 18:49
feedback

I don't know F#, but you could write Convert.ToUint16(reader.GetInt32(3)).

EDIT: According to MSDN, you can cast by writing uint16 reader.GetInt32(3).

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.