本文介绍了tic tac toe游戏的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
已解决。内容必须至少为30个字符。
solved.The content must be at least 30 characters.
推荐答案
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
这篇关于tic tac toe游戏的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!