Helper
FakeMonitor.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XnaToFna {
public static clast FakeMonitor {
public static void Enter(object o, ref bool b) {
b = true;
}
public static void Exit(object o) {
}
}
}