L
Logician
I want to use UNIX to develop c# applications, does anyone have any
details of compatibility issues?
details of compatibility issues?
applications, does anyone have any
details of compatibility issues?
K said:Does the DotNet framework exist for
Unix? I though it was a project intended for future, if ever...
Logician said:I want to use UNIX to develop c# applications, does anyone have any
details of compatibility issues?
K said:I was under the impression that the new WPF
should be used for all new development, instead of WinForms. Have i been
missinformed?
then writing it in C# using Mono should be
OK. If you develop on *nix and want to
deploy on both *nix and Windows then you
should also be fine.
(in both cases uses GTK# not Win Forms !)
We can always discuss whether it is "should"
or "should consider". But it is more or less
correct.
For MS .NET on Windows. AFAIK then Mono does
not offer WPF, so it is simply not an option
for *nix.
I've had several issues with character encoding.
Eg: using (StreamReader sr = new
StreamReader(dataStream, System.Text.Encoding.Default))
defaulted to the correct encoding for that specific stream in Windows
(UTF-7 in that case).
On *nix it was bugged and I had to specifically
set it to UTF7. There were several _minor_ other things that broke my
code when someone tried to run under *nix.
K said:Right, "should consider". I agree, it's not always the best choice.
That, i didn't know. I guess that i naively assumed once a framework is
released, it does
contain (or at least is aimed at containing)
att the parts for all the different paltforms.
I've had several issues with character encoding.
Eg: using (StreamReader sr = new
StreamReader(dataStream, System.Text.Encoding.Default))
defaulted to the correct encoding for that specific stream in Windows
(UTF-7 in that case). On *nix it was bugged and I had to specifically
set it to UTF7. There were several _minor_ other things that broke my
code when someone tried to run under *nix.
MS does not release a .NET for *nix.
They release to Windows and the Mono
people start creating the same classes.
And they have not created much of the 3.x
classes yet.
Does the DotNet framework exist forUnix? I though it was a project
intended for future, if ever...
Logician said:Is there some way to improve .NET/C# performance when running high CPU
usage programs?Windows is so slow and limited that the machine slows
down.