Click here to Skip to main content
15,896,606 members
Articles / Mobile Apps

AppSettings Implementation for Compact Framework

Rate me:
Please Sign up or sign in to vote.
4.41/5 (28 votes)
23 Mar 2004CPOL1 min read 118.1K   1.1K   60  
Learn how to create a settings class that will make it easy to access and store your application settings.
<?xml version="1.0" encoding="utf-8" ?> 
<configuration>
	<appSettings>
		<add key="ServerIP" value="192.168.5.22" />
		<add key="UserName" value="testuser" />
		<add key="Password" value="jdhs822@@*" />
		<add key="PhoneNumber" value="5555555555" />
		<add key="TimeOut" value="60" />
		<add key="LastTransmit" value="03/03/2004 9:12:33 PM" />
		<add key="DatabasePath" value="\Program Files\DB\test.sdf" />
	</appSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Check out my blog! http://www.pagebrooks.com

Comments and Discussions