Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

toString Method

Options
  • 15-11-2012 2:13pm
    #1
    Registered Users Posts: 16


    I have this simple toString method in my code:

    public String toString()
    {return "Item ", desc, " has product code ", code, ", and the price is €", price;}

    however, I am getting an error that:

    This method must return a result of type String

    Anybody know what I've done wrong, and more importantly how to rectify it?!


Comments

  • Registered Users Posts: 40 Marko_Polo


    Try:

    public String toString()
    {return "Item " + desc + " has product code " + code, " + and the price is €" + price;}


  • Registered Users Posts: 16 awney


    Legend, thank you :)


  • Closed Accounts Posts: 2,930 ✭✭✭COYW


    Use string.format:
    string.Format("Item {0} has the product code {1}, and the price is {2}.", desc, code, price);


Advertisement