Click here to Skip to main content
16,008,490 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Create an exe which will produce other exe file Pin
Dave Kreskowiak22-Aug-11 2:08
mveDave Kreskowiak22-Aug-11 2:08 
AnswerRe: Create an exe which will produce other exe file Pin
Shameel21-Aug-11 3:54
professionalShameel21-Aug-11 3:54 
AnswerRe: Create an exe which will produce other exe file Pin
Alan N21-Aug-11 9:27
Alan N21-Aug-11 9:27 
QuestionRe: Create an exe which will produce other exe file Pin
Shameel21-Aug-11 23:53
professionalShameel21-Aug-11 23:53 
AnswerRe: Create an exe which will produce other exe file Pin
Alan N22-Aug-11 3:40
Alan N22-Aug-11 3:40 
AnswerRe: Create an exe which will produce other exe file Pin
David Magnotti29-Aug-11 5:22
David Magnotti29-Aug-11 5:22 
QuestionDataTable in .Net Pin
dews turner20-Aug-11 3:12
dews turner20-Aug-11 3:12 
AnswerRe: DataTable in .Net Pin
Simon Bang Terkildsen20-Aug-11 3:50
Simon Bang Terkildsen20-Aug-11 3:50 
typeof(DataTable).IsSerializable is true because it's marked with the SerializableAttribute[^]
The SerializableAttribute tells the serializer to use default serialization, but the serializer will throw an exception if it encounters a type which isn't marked with the SerializableAttribute. The DataTable Columns property is of the type DataColumnCollection[^] which is not marked with the attribute and thus DataTable cannot be serialized.

But DataSet can be serialized and it contains DataTable's!
The reason DataSet can be serialized is because it implements the ISerializable interface[^] and thus custom serialization logic.
AnswerRe: DataTable in .Net Pin
PIEBALDconsult20-Aug-11 6:29
mvePIEBALDconsult20-Aug-11 6:29 
GeneralRe: DataTable in .Net Pin
Simon Bang Terkildsen21-Aug-11 13:07
Simon Bang Terkildsen21-Aug-11 13:07 
GeneralRe: DataTable in .Net Pin
PIEBALDconsult21-Aug-11 14:59
mvePIEBALDconsult21-Aug-11 14:59 
GeneralRe: DataTable in .Net Pin
Bert Mitton3-Sep-11 6:56
professionalBert Mitton3-Sep-11 6:56 
QuestionEvent handling Pin
Pankaj Patel yosa20-Aug-11 2:40
Pankaj Patel yosa20-Aug-11 2:40 
AnswerRe: Event handling Pin
MicroVirus20-Aug-11 3:33
MicroVirus20-Aug-11 3:33 
Questiongadgets for desktop Pin
vannie1819-Aug-11 3:53
vannie1819-Aug-11 3:53 
AnswerRe: gadgets for desktop Pin
DaveAuld20-Aug-11 7:03
professionalDaveAuld20-Aug-11 7:03 
GeneralRe: gadgets for desktop Pin
vannie1820-Aug-11 15:01
vannie1820-Aug-11 15:01 
Questionsearch using textbox and listview in vb.net Pin
atzdgreat19-Aug-11 3:23
atzdgreat19-Aug-11 3:23 
AnswerRe: search using textbox and listview in vb.net Pin
Dave Kreskowiak19-Aug-11 4:53
mveDave Kreskowiak19-Aug-11 4:53 
QuestionString compare oddity [modified] Pin
PIEBALDconsult18-Aug-11 15:21
mvePIEBALDconsult18-Aug-11 15:21 
AnswerRe: String compare oddity Pin
Navin Pandit18-Aug-11 19:02
Navin Pandit18-Aug-11 19:02 
GeneralRe: String compare oddity Pin
PIEBALDconsult19-Aug-11 2:42
mvePIEBALDconsult19-Aug-11 2:42 
AnswerRe: String compare oddity Pin
Shameel19-Aug-11 4:41
professionalShameel19-Aug-11 4:41 
GeneralRe: String compare oddity Pin
PIEBALDconsult19-Aug-11 5:24
mvePIEBALDconsult19-Aug-11 5:24 
GeneralRe: String compare oddity Pin
Shameel19-Aug-11 5:33
professionalShameel19-Aug-11 5:33 

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.