c# - NamedPipeClientStream AccessViolation -
i came across issue today constructor of namedpipeclientstream threw av.
after boiling down try , minimal repeatable example found...
- create new project in vs2013 update 4 (console do) targeting .net 3.5
change main this....
static void main(string[] args) { var pipe = new namedpipeclientstream(".", "global\\turnips", pipedirection.inout, pipeoptions.asynchronous); }
- run.
anyone have idea what's going on here? i've looked through code in ctor of named pipe using ilspy , can't see reason behaviour.
Comments
Post a Comment