Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
solved.The content must be at least 30 characters.
Posted
Updated 30-Oct-13 23:32pm
v2

1 solution

you need to return a boolean value - so .....

C#
static bool TryParseInput(String line, out SquareValue value, out Int32 rowPos, out Int32 colPos)
{


    // Uppgift 1a.
    // Implementera denna metod, vilket kan göras genom att anropa den fördefinierade metoden
    // Int32.TryParse och en metod TryParseSquareValue, vilken då behöver definieras.

    return false;

}


..or make it true - until you actually have code there to do the parsing etc, it doesnt matter
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900