UInt32 Question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cmdolcet69
    New Member
    • Sep 2007
    • 25

    UInt32 Question

    THe following code:
    Code:
    Dim n As System.UInt32 = Convert.ToUInt32(46)
    What are they passing inside the () is that an integer?
  • VBPhilly
    New Member
    • Aug 2007
    • 95

    #2
    Originally posted by cmdolcet69
    THe following code:
    Code:
    Dim n As System.UInt32 = Convert.ToUInt32(46)
    What are they passing inside the () is that an integer?
    no, its a 46. just kidding.
    ToUInt32 is overloaded. check out the possible combinations here:
    http://msdn2.microsoft .com/en-us/library/system.convert. touint32.aspx

    Comment

    Working...