Code Trivia #6
- by João Angelo
It’s time for yet another code trivia and it’s business as usual. What will the following program output to the console?
using System;
using System.Drawing;
using System.Threading;
class Program
{
[ThreadStatic]
static Point Mark = new Point(1, 1);
static void Main()
{
Thread.CurrentThread.Name = "A";
…