TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
walid mousbah
NA
10
11.9k
XML into Object
Jun 27 2015 6:59 AM
I'm trying to deserialize my xml this way:
public static T MyMethod<T>(this string Myxml)
{
XmlDocument Mydocument = new XmlDocument();
using (XmlTextReader XmlTr = new XmlTextReader(new StringReader(Myxml)))
{
Mydocument.Load(XmlTr);
}
// How do I return the result ?
return ???
}
How do I return my result into MyObject which I created to represent the XML ?
Thanks
Reply
Answers (
1
)
how can improve(fix) speech speed in speech recognition
How to add listbox selected item to textbox?