mbed.h has "using namespace std" and "using namespace mbed" . Just spent a bunch of time debugging something b/c I had no idea my namespace had gotten clobbered. Putting using declarations in a header ...
#r "mscorlib" #r "System" using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; I am trying to execute below code where MyData is a simple ...