Click here to Skip to main content
15,888,269 members
Home / Discussions / C#
   

C#

 
AnswerRe: file not uploading Help.... Pin
Mycroft Holmes18-Dec-14 11:49
professionalMycroft Holmes18-Dec-14 11:49 
GeneralRe: file not uploading Help.... Pin
OriginalGriff18-Dec-14 21:49
mveOriginalGriff18-Dec-14 21:49 
GeneralRe: file not uploading Help.... Pin
Mycroft Holmes19-Dec-14 14:20
professionalMycroft Holmes19-Dec-14 14:20 
QuestionHow to create an auto generated ID Pin
ochaya gerald18-Dec-14 1:25
ochaya gerald18-Dec-14 1:25 
SuggestionRe: How to create an auto generated ID Pin
Richard Deeming18-Dec-14 1:36
mveRichard Deeming18-Dec-14 1:36 
AnswerRe: How to create an auto generated ID Pin
OriginalGriff18-Dec-14 1:53
mveOriginalGriff18-Dec-14 1:53 
QuestionHow to fill a list with a dataset with multiple tables? In C# Pin
Member 1131834917-Dec-14 21:20
Member 1131834917-Dec-14 21:20 
AnswerRe: How to fill a list with a dataset with multiple tables? In C# Pin
Freak3017-Dec-14 22:48
Freak3017-Dec-14 22:48 
According to the input you don't have two root tables. Phone is a nested table of person. Your Person object should look like this.
C#
class Person
{
   String Name;
   List<String> Phone;
}

If you can influence how the list is generated, you should probably get the naming of the phone tags changed into something like this:
HTML
<phones>
  <phone>11111</phone>
  <phone>22222</phone>
</phones>

That would make parsing the list easier, as you wouldn't have all these differently names tags.
The good thing about pessimism is, that you are always either right or pleasently surprised.

GeneralRe: How to fill a list with a dataset with multiple tables? In C# Pin
Member 1131834917-Dec-14 23:48
Member 1131834917-Dec-14 23:48 
AnswerRe: How to fill a list with a dataset with multiple tables? In C# Pin
Simon_Whale17-Dec-14 23:58
Simon_Whale17-Dec-14 23:58 
QuestionTask Parrallel Pin
Mycroft Holmes17-Dec-14 15:36
professionalMycroft Holmes17-Dec-14 15:36 
AnswerRe: Task Parrallel Pin
Dave Kreskowiak17-Dec-14 17:29
mveDave Kreskowiak17-Dec-14 17:29 
GeneralRe: Task Parrallel Pin
Mycroft Holmes17-Dec-14 19:07
professionalMycroft Holmes17-Dec-14 19:07 
AnswerRe: Task Parrallel Pin
Kornfeld Eliyahu Peter17-Dec-14 19:53
professionalKornfeld Eliyahu Peter17-Dec-14 19:53 
GeneralRe: Task Parrallel Pin
Mycroft Holmes17-Dec-14 20:16
professionalMycroft Holmes17-Dec-14 20:16 
GeneralRe: Task Parrallel Pin
Kornfeld Eliyahu Peter17-Dec-14 20:23
professionalKornfeld Eliyahu Peter17-Dec-14 20:23 
AnswerRe: Task Parrallel Pin
Agent__00717-Dec-14 20:49
professionalAgent__00717-Dec-14 20:49 
GeneralRe: Task Parrallel Pin
Mycroft Holmes17-Dec-14 21:42
professionalMycroft Holmes17-Dec-14 21:42 
GeneralRe: Task Parrallel Pin
Richard Deeming18-Dec-14 1:34
mveRichard Deeming18-Dec-14 1:34 
GeneralRe: Task Parrallel Pin
Agent__00718-Dec-14 16:21
professionalAgent__00718-Dec-14 16:21 
Questionc# & OAuth2.0 & Google Calendar API v3 Pin
eli123317-Dec-14 12:59
eli123317-Dec-14 12:59 
QuestionHow can I add rows in datagridview in VS? Pin
turbosupramk317-Dec-14 4:28
turbosupramk317-Dec-14 4:28 
GeneralRe: How can I add rows in datagridview in VS? Pin
PIEBALDconsult17-Dec-14 4:34
mvePIEBALDconsult17-Dec-14 4:34 
GeneralRe: How can I add rows in datagridview in VS? Pin
turbosupramk317-Dec-14 4:40
turbosupramk317-Dec-14 4:40 
GeneralRe: How can I add rows in datagridview in VS? Pin
OriginalGriff17-Dec-14 5:20
mveOriginalGriff17-Dec-14 5:20 

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.