.NET
gpsnet.txt
Associated article: GPS Programming & .NET
Tags: .NET Mobile
Published source code accompanying the article by Johan Franson in which he shows how to use the Global Positioning for .NET applications.
GPS Programming & .NET
by Johan Franson
Listing One
// Returns true if checksum of NMEA sentence is valid
public bool ValidateChecksum(string Sentence)
{
int sum = 0, inx;
char[] sentence_chars = Sentence.ToCharArray();
char tmp;
// All charachter xor:ed results in the ...


