本文整理汇总了C#中Link.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# Link.ToString方法的具体用法?C# Link.ToString怎么用?C# Link.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Link
的用法示例。
在下文中一共展示了Link.ToString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main(string[] args)
{
string[] inputs = Console.ReadLine().Split(' ');
int N = int.Parse(inputs[0]); // the total number of nodes in the level, including the gateways
int L = int.Parse(inputs[1]); // the number of links
int E = int.Parse(inputs[2]); // the number of exit gateways
for (int i = 0; i < L; i++)
{
links.Add(new Link(Console.ReadLine().Split(' ')));
}
for (int i = 0; i < E; i++)
{
EditType(int.Parse(Console.ReadLine()), Type.EXIT);
}
// game loop
while (true)
{
// The index of the node on which the Skynet agent is positioned this turn
EditType(int.Parse(Console.ReadLine()), Type.SKY);
// Write an action using Console.WriteLine()
last = GetOne();
Console.WriteLine(last.ToString()); // Example: 0 1 are the indices of the nodes you wish to sever the link between
}
}