Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Am looking for C# open source NMEA parser.
Well, I'm not familiar with it myself, but some quick searches show one on CodeProject, which links to 2 other such, here and here. Any of those help?
check out sharpGPS . there are several other gps and nmea related projects o codeplex too
FWIW, it's not hard (10-40 LOC) to parse the basic ones your self. If you find you need to do this, here is a link with some useful info.
One more (support several devices)
http://www.codeproject.com/Articles/279647/NMEA-sentence-parser-builder
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Can anyone please help me with this?
I would like to read and parse a remote json and print it in a list box in Windows 7 Phone.
I googled and couldnt able to find an apt answer which works for me.
It would be good to get some tutorials or some code samples.
Thank you,
JSON.NET is a mature library for parsing JSON and has specific support for Windows Phone 7.
If you look on the json website (http://www.json.org/) you can find a list of libraries currently available for parsing JSON in C# and a link to how to create a parser yourself, if you would like to do that instead.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Group,
Does anyone know anything about SNMP over TCP coded in C#. I'm just looking for some good online examples or references.
This question asked on MSDN is probably relevant to your interests. There is a simple example of implementation code here, but it obviously doesn't scale too well. If you're looking for a library, this small SNMP library might be what you're looking for.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Can anyone suggest a free (or very very cheap) alternative to Nevron Diagrams? I was playing with Open Diagram which is open source but it's very poorly documented and their forum is dead.
Take a look at NShape. Haven't worked with it yet but seems nice...
This link may point you in the right path:
Which ASP.NET Diagramming Library/Control do you Recommend?
Take a look at this page for more relevant info:
https://stackoverflow.com/search?q=C%23+diagramming+library
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need to parse Outlook .msg files. How do I do it? Are there any classes?
I found http://www.aspose.com/purchase/pricing-info-step-1-of-3.aspx
Aspose it is a third party tool, which I need to purchase.
Is there any other way without purchasing?
This article on CodeProject (http://www.codeproject.com/Tips/712072/Reading-an-Outlook-MSG-File-in-Csharp) its everething that you need.
Very complete and funcional.
In the Outlook Object Model, use Application.Session.OpenSharedItem (will return MalItem).
If using Redemption is an option (I am its author), use its RDOSession.GetMessageFromMsgFile method.
You may take a look at this article (first hit on google).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm trying to figure out the best way take a ics file and convert it into a format I can put into a database. Can anyone recommend how to do this?
There's an example of parsing iCalendar files. It is based on the DDay.iCal library.
The commercial .NET library Aspose.iCal does the job
http://www.aspose.com/community/blogs/salman.sarfraz/archive/2008/11/21/where-is-aspose-icalendar.aspx (used to be http://www.aspose.com/categories/file-format-components/aspose.network-for-.net/default.aspx)
Or this open source parser (didn't try it)
http://sourceforge.net/projects/icalparser/
And this online iCal validator comes in handy
http://severinghaus.org/projects/icv/
Regards,
tamberg
I used https://github.com/der-Daniel/ical.NET which is also available on Nuget.