Link to home
Start Free TrialLog in
Avatar of rnsr
rnsrFlag for India

asked on

Meaning of Oject as function

What does below function mean


class abc
{
    public object a()
    {
        return "a";
    }
}

Open in new window


what will be output if written in console.  and how.
Thanks in advance
ASKER CERTIFIED SOLUTION
Avatar of AndyAinscow
AndyAinscow
Flag of Switzerland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rnsr

ASKER

will it be right to say -  return can be integer, or class object, string [ as in above case]  etc. No pre specified data type. but depending on what it returns.
Yes, it can be anything that is based on the generic object class
Avatar of rnsr

ASKER

Thanks,