Skip to main content
Inspiring
December 17, 2007
Question

can uint be null?

  • December 17, 2007
  • 1 reply
  • 450 views
so ive got this method and FDT is complaining about uint not being able to be null. true?

public method SomeClass ( n:String=null, id:uint=null ) {}
This topic has been closed for replies.

1 reply

Inspiring
December 17, 2007
uint = null converts to 0. You need to pass 0 as a default value.