bplu4t2f

Results 17 comments of bplu4t2f

Well, not exactly. If you are using visual studio as a host process, then visual studio will most likely want to redirect standard output in some way (for one, to...

By the way, theoretically it should have been possible to set a `Script`'s output stream via var s = new Sript(); s.Options.Stdout = someStream; However in practice this doesn't work...

You've probably figured this out already but the problem is that it's adding the "netcore" dll to your project references, when it should add the "portable" dll. To fix it,...

That was an interesting ride! The issue is not exclusive to operator overloading. It is also not possible to call a function which has `TProxy` as argument: script.Globals["func"] = (Action)(x...

It seems like the BindingFlags.FlattenHierarchy item was made specifically for this purpse. Doc: https://msdn.microsoft.com/en-us/library/cexkb29a(v=vs.110).aspx > Specifies that public and protected static members up the hierarchy should be returned. Private static...

This issue is a bug, not a potential "enhancement". And a rather hefty one IMO. Serial.write() is supposed to be asynchronous, not to speak of the various other issues already...

This might be related to a similar issue on Windows. At least I've been able to reproduce occasional access violations on Windows with `-no-crt`, which I could trace down to...