Compiler Error C2573 (Windows CE 5.0)

Send Feedback

'identifier' : simple type cast must have exactly one expression

The conversion has the wrong number of actual parameters.

The following example shows ways this error might occur.

void func()
{
  int i = int();     // error, no actual parameters
  int j = int( 1.0 ) // OK
}

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.