What does static int ConvertArg do? How do i evaluate this code?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Dorothy Albes
    New Member
    • Aug 2010
    • 1

    What does static int ConvertArg do? How do i evaluate this code?

    Here is a code that i need to know what it does and to evaluate it also.


    static int ConvertArg
    Last edited by Dorothy Albes; Aug 31 '10, 08:44 PM. Reason: Forgot to put in code
  • Oralloy
    Recognized Expert Contributor
    • Jun 2010
    • 988

    #2
    Dorothy,

    Unless you mean the very simple statement, I don't see any code.

    That statement is a default access declaration of a global integer value which lives within the containing class. Because of the "default" access, unrestricted access is available to all other classes in the package, however no other classes have access to the variable.

    Is that what you're looking for?

    Cheers,
    Oralloy

    Comment

    Working...