.net - Will managed C++ (CLI) code ported from C# work faster than original C#? ( tcp server) -
so created simple c# tcp sever video sharing. simple , shall done "life" - recive live video packed container (flv in our case) broadcaster , share recived stream subscribers (means open container , create new containers , make timestamps on container structure not decode contents of packets in way). tested our server found out performance not enough 5 incoming streamers , 10 outgoing streams. fe found this app porting. try way before try wonder if of have tried such thing on of projects. main question - c++ cli make app faster original c#?
no.
writing same code in different language won't make difference whatsoever; still compile same il.
c# not slow language; have higher-level performance issues.
should optimize existing code.
Comments
Post a Comment