Arkadiusz Kowal wrote: > I am testing it on vista, and when i am running server in .net sending > table takes only short while (something about 1 second), but when i run > server in mono i takes something about 15 seconds. > > could somebody tell why it takes so long in mono?
This is related to a suboptimal handling of the "char" data type either in System.IO.BinaryReader or somewhere in System.Text.*Encoding. If you change char[] to byte[] you'll get the same perf like on MS.NET. Please file a bug at http://www.mono-project.com/Bugs. Robert _______________________________________________ Mono-devel-list mailing list [email protected] http://lists.ximian.com/mailman/listinfo/mono-devel-list
