As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I have an iPhone client talking to a Windows server written in C#.The data from the device is sent as a binary plist.I am looking for a framework in C# that understands the binary plist and converts it into a dataset. On googling, I ran into plutil but that's a CLI and I need something that does it inline with the application.
Thanks
Plist serialization and de-serialization for C# and .NET.
I don’t know of any library for Windows that does this. But you might want to take the property list reading code from The Cocotron and port it to C#. It shouldn’t be too hard to do that.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I work as a system developer, mainly programming information systems in C# for web, desktop and server environments. Now I'd like to have a go at game development in C# just for the sake of the challenge and expanding my horizons, but where do I start? I've had a look at XNA, but I heard that it's on the way out.
Where does one begin?
I know this says "Teens" but it may be worth a look: http://www.amazon.co.uk/Visual-Programming-Teens-Course-Technology/dp/1435458486/ref=sr_1_3?ie=UTF8&qid=1371394387&sr=8-3&keywords=c%23+game
I just saw this today funnily enough, I have no affiliate with the author (or Amazon)
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I need to write a program which connects to some databases and handles data within them. I must run Ubuntu. I have more experience with C#, but on windows..
Should I write the program using C# and Mono, or - would it make me many troubles and I should just go with C++? Thanks a lot!
I would use Java or Python. I'm not a big fan of the concept of running .NET code on Linux and serialization in c++ is just a complete pain in the ass. If those are really your only two options I would probably do C# but I would recommend doing something entirely different. If you've written C# and c++ learning enough Java or Python to get this done won't be a whole lot of trouble.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
Other than AWT, Swing, SWT (Java) - are there any good open source Java or C# UI libraries around? In particular, libs intended or at least usable for strategy gaming dev? (The visual appearance of the UI would need to be highly dynamic and easy to re-skin obviously.) Engines or "frameworks" which include this functionality are valid answers as well (of course I even more doubt that those exist).
As far as I can tell - there's not a single thing like this out there. Anyone able to prove me wrong?
Not sure about Java, but for C# I would look at either XNA or Unity to start out with.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
In our real life Java and C# both has a significant effect. Personally I love Java because of its complexity also I have experience in C# too. I want to know, from desktop application to robotics, web application to machine learning what are the fields which are possible in Java but not currently available in C# and vice versa. Thank you.
Given both languages are Turing complete, anything you can do in one language you can do in the other.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
what are the best tools for c# to do image processing? i am a beginner and want to learn the basics
Try getting started with this:
http://code.google.com/p/aforge/
(Source: Are there any OK image recognition libraries for .NET?)
Once you learn the basics, you can try writing your own.
Try Emgu CV, it is the wrapper of opencv in .net. And you can get more information about it from :
http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=opencv+c%23
Also check the Image Processing Lab sample in C#, which uses AForge.NET library.