I’m writing a program on windows mobile 6 in C# and I want it to collect data from GPS-module every second. What is the simplest way to store it on the phone? I’m thinking about either txt or XML file. What do you recommend?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The simplest way is to use a txt file since you can just continuously append to the end.
Going the XML route will require more space and more processing since you can’t just seek to the end and append data.