Hi, in the example below, what would 'foo' be set to each time? I've searched online but I can't find anywhere that gives me the answer:
static void Main(string[] args) {
static public bool abc = true;
static public bool foo = (abc = false);
foo = (abc = true);
}