Click here to Skip to main content
15,923,689 members
Home / Discussions / C#
   

C#

 
AnswerRe: using Windows Product Key to fingerprint an installation? Pin
Richard MacCutchan25-Sep-09 23:54
mveRichard MacCutchan25-Sep-09 23:54 
GeneralRe: using Windows Product Key to fingerprint an installation? Pin
was830927-Sep-09 8:17
was830927-Sep-09 8:17 
AnswerRe: using Windows Product Key to fingerprint an installation? Pin
harold aptroot26-Sep-09 3:33
harold aptroot26-Sep-09 3:33 
AnswerRe: using Windows Product Key to fingerprint an installation? Pin
was830927-Sep-09 8:27
was830927-Sep-09 8:27 
QuestionFirst programming project what are my choices for storing data. Pin
PROPZ_7625-Sep-09 12:05
PROPZ_7625-Sep-09 12:05 
AnswerRe: First programming project what are my choices for storing data. Pin
PIEBALDconsult25-Sep-09 12:13
mvePIEBALDconsult25-Sep-09 12:13 
AnswerRe: First programming project what are my choices for storing data. Pin
Christian Graus25-Sep-09 12:35
protectorChristian Graus25-Sep-09 12:35 
AnswerRe: First programming project what are my choices for storing data. Pin
Alan Balkany28-Sep-09 5:05
Alan Balkany28-Sep-09 5:05 
Serialization is the easiest option by far. It's built into .NET, and is almost automatic.

But if the format of what you're saving changes, it becomes way more complex to read data you've stored in the old format.

Another disadvantage of serialization is that is becomes very bloated, taking up many times as much space in the serialized XML files as the original data.

Another serialization disadvantage is that it's sometimes buggy and unreliable. Some things require complex workarounds (which you can find on the web), some things can't be serialized, and (surprisingly) some things can only be serialized some of the time.

Do some simple tests to see if it's adequate for what you want to store/retrieve.
GeneralRe: First programming project what are my choices for storing data. Pin
PROPZ_7628-Sep-09 12:24
PROPZ_7628-Sep-09 12:24 
QuestionTake a databse back up with LINQ ? Pin
Mohammad Dayyan25-Sep-09 10:30
Mohammad Dayyan25-Sep-09 10:30 
AnswerRe: Take a databse back up qith LINQ ? Pin
Richard MacCutchan25-Sep-09 10:51
mveRichard MacCutchan25-Sep-09 10:51 
Questionabout C# books Pin
CoderForEver25-Sep-09 9:51
CoderForEver25-Sep-09 9:51 
AnswerRe: about C# books Pin
Pete O'Hanlon25-Sep-09 11:22
mvePete O'Hanlon25-Sep-09 11:22 
GeneralRe: about C# books Pin
CoderForEver25-Sep-09 23:50
CoderForEver25-Sep-09 23:50 
GeneralRe: about C# books Pin
Richard MacCutchan26-Sep-09 0:00
mveRichard MacCutchan26-Sep-09 0:00 
GeneralRe: about C# books Pin
CoderForEver26-Sep-09 0:20
CoderForEver26-Sep-09 0:20 
GeneralRe: about C# books Pin
Richard MacCutchan26-Sep-09 0:34
mveRichard MacCutchan26-Sep-09 0:34 
GeneralRe: about C# books Pin
CoderForEver26-Sep-09 0:46
CoderForEver26-Sep-09 0:46 
QuestionC# Syntax/Programming Theory Question Pin
Xpnctoc25-Sep-09 8:40
Xpnctoc25-Sep-09 8:40 
AnswerRe: C# Syntax/Programming Theory Question Pin
PIEBALDconsult25-Sep-09 8:51
mvePIEBALDconsult25-Sep-09 8:51 
GeneralRe: C# Syntax/Programming Theory Question Pin
Xpnctoc25-Sep-09 9:11
Xpnctoc25-Sep-09 9:11 
AnswerRe: C# Syntax/Programming Theory Question Pin
Henry Minute25-Sep-09 9:47
Henry Minute25-Sep-09 9:47 
AnswerRe: C# Syntax/Programming Theory Question Pin
Pete O'Hanlon25-Sep-09 11:14
mvePete O'Hanlon25-Sep-09 11:14 
GeneralRe: C# Syntax/Programming Theory Question Pin
Xpnctoc25-Sep-09 11:17
Xpnctoc25-Sep-09 11:17 
GeneralRe: C# Syntax/Programming Theory Question Pin
PIEBALDconsult25-Sep-09 12:23
mvePIEBALDconsult25-Sep-09 12:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.