Posts Tagged Storage

Saving settings to XML Configuration Files

Posted by Marco Minerva Some times ago I published a class that allows to read XML Configurtion Files (.config) in the standard .NET format. Now, I am asked how to change and save these settings back to file. So, I have updated the ConfigurationManager class to support these new features. There are two new methods: […]

, ,

4 Comments

XML Configuration Files for .NET Micro Framework Applications (English)

By Marco Minerva, translated Mike Dodaro from the original Italian version. All applications require configuration files; we use them to customize behavior and to set parameters unknown at compile time, or those that may change over time (such as the database connection string, the address of the mail server, etc.). .NET supplies the class ConfigurationManager, or WebConfigurationManager for Web applications, to […]

, ,

6 Comments

File di configurazione XML per applicazioni .NET Micro Framework (Italiano)

Tutte le applicazioni necessitano di file di configurazione: li utilizziamo per personalizzare il loro comportamento e per impostare parametri non noti in fase di compilazione, o che possono cambiare nel tempo (come la stringa di connessione al database, l’indirizzo del server di posta elettronica, ecc.). .NET fornisce la classe ConfigurationManager (o WebConfigurationManager, nel caso di […]

,

Leave a comment

Finding Files on an SD Memory Card (English)

By Marco Minerva.  Translated by Mike Dodaro from the original Italian version. .NET Gadgeteer makes useful APIs available to interact with an SD memory card in a module such as this SD Card Module available from GHI Electronics. It is possible to get a list of files, directories, to create files, and to read and write to them. Missing […]

,

Leave a comment

Cercare file su una memory card SD (Italiano)

.NET Gadgeteer mette a disposizione una comoda API per interagire con le memory card SD collegate alla scheda attraverso il modulo SD Card: è possibile recuperare la lista dei file, delle directory, creare cartelle, leggere e scrivere file. Manca però un metodo che restituisca solo i file con una certa estensione. Vediamo quindi come aggiungere […]

,

Leave a comment