Hello,
I would like to use vector in Codingame. This datatype is supported by the CLR and present in the System.Windows namespace according to MSDN:
However I do not manage to have it compile. My code looks like the following:
using System;
using System.Linq;
using System.IO;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using System.Windows;
/**
* Auto-generated code below aims at helping you parse
* the standard input according to the problem statement.
**/
class Player
{
static void Main(string[] args)
{
Vector vector1 = new Vector(20, 30);
{...}
}
}
As a result I get:
error CS0246: The type or namespace name Vector could not be found. Are you missing an assembly reference?
Does it mean I can not use functions out of the System.Windows Assembly in Codingame? Is this expected? Can it be fixed?