Click here to Skip to main content
15,899,126 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Suggestions on using XmlTextReader to parse xml into an object tree. Pin
led mike29-Jan-09 4:58
led mike29-Jan-09 4:58 
GeneralRe: Suggestions on using XmlTextReader to parse xml into an object tree. Pin
wout de zeeuw29-Jan-09 5:10
wout de zeeuw29-Jan-09 5:10 
GeneralRe: Suggestions on using XmlTextReader to parse xml into an object tree. Pin
led mike29-Jan-09 5:20
led mike29-Jan-09 5:20 
GeneralRe: Suggestions on using XmlTextReader to parse xml into an object tree. Pin
wout de zeeuw29-Jan-09 5:25
wout de zeeuw29-Jan-09 5:25 
GeneralRe: Suggestions on using XmlTextReader to parse xml into an object tree. Pin
Mark Churchill29-Jan-09 12:29
Mark Churchill29-Jan-09 12:29 
QuestionRestricting FileBrowserDialog to set of Folders Pin
Tristan Rhodes28-Jan-09 5:59
Tristan Rhodes28-Jan-09 5:59 
QuestionDataTable inheritance and Serialization "Constructor to deserialize an object" "was not found" Pin
dwolver27-Jan-09 6:09
dwolver27-Jan-09 6:09 
AnswerRe: DataTable inheritance and Serialization "Constructor to deserialize an object" "was not found" Pin
Wendelius27-Jan-09 10:23
mentorWendelius27-Jan-09 10:23 
If you inherit from a class which has a non-public deserialization constructor, you will have to implement it. Like:
public class CSVImport : DataTable

public CSVImport():base()
{ 
}
public CSVImport(SerializationInfo info,
                 StreamingContext context):base(info, context)
{ 
}


The need to optimize rises from a bad design.My articles[^]

GeneralRe: DataTable inheritance and Serialization "Constructor to deserialize an object" "was not found" Pin
dwolver27-Jan-09 11:07
dwolver27-Jan-09 11:07 
GeneralRe: DataTable inheritance and Serialization "Constructor to deserialize an object" "was not found" Pin
Wendelius27-Jan-09 11:11
mentorWendelius27-Jan-09 11:11 
QuestionNeed help with BindingSource Pin
kensai27-Jan-09 5:52
kensai27-Jan-09 5:52 
QuestionSupport to Microsoft Access database for Entity Framework in VS2008 ? Pin
WolveFred227-Jan-09 5:28
WolveFred227-Jan-09 5:28 
AnswerRe: Support to Microsoft Access database for Entity Framework in VS2008 ? Pin
Dave Kreskowiak27-Jan-09 7:59
mveDave Kreskowiak27-Jan-09 7:59 
AnswerRe: Support to Microsoft Access database for Entity Framework in VS2008 ? Pin
Eddy Vluggen29-Jan-09 2:00
professionalEddy Vluggen29-Jan-09 2:00 
GeneralRe: Support to Microsoft Access database for Entity Framework in VS2008 ? Pin
WolveFred229-Jan-09 2:14
WolveFred229-Jan-09 2:14 
GeneralRe: Support to Microsoft Access database for Entity Framework in VS2008 ? Pin
Eddy Vluggen29-Jan-09 2:29
professionalEddy Vluggen29-Jan-09 2:29 
GeneralRe: Support to Microsoft Access database for Entity Framework in VS2008 ? Pin
WolveFred229-Jan-09 2:51
WolveFred229-Jan-09 2:51 
GeneralRe: Support to Microsoft Access database for Entity Framework in VS2008 ? Pin
Eddy Vluggen29-Jan-09 3:12
professionalEddy Vluggen29-Jan-09 3:12 
QuestionAssembly-informations and Application-Properties problem! Pin
tschmid8526-Jan-09 23:19
tschmid8526-Jan-09 23:19 
QuestionRe: Assembly-informations and Application-Properties problem! Pin
led mike27-Jan-09 5:01
led mike27-Jan-09 5:01 
Questioncommunicating with a bar-code reader Pin
Subin Alex26-Jan-09 22:38
Subin Alex26-Jan-09 22:38 
AnswerRe: communicating with a bar-code reader Pin
SeMartens27-Jan-09 0:23
SeMartens27-Jan-09 0:23 
GeneralRe: communicating with a bar-code reader Pin
Luc Pattyn27-Jan-09 1:48
sitebuilderLuc Pattyn27-Jan-09 1:48 
AnswerCP IGNORE Pin
leckey27-Jan-09 9:50
leckey27-Jan-09 9:50 
Questionretain the values changed in the property grid at runtime Pin
shabanab26-Jan-09 22:19
shabanab26-Jan-09 22:19 

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.