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
Istudent Rana
1.4k
337
83.4k
How do i convert string date from xml to date time data type
Apr 26 2019 1:40 PM
My xml file:
<?xml version="1.0" encoding="UTF-8"?>
<Student>
<Name>John</Name>
<Grade>5</Grade>
<BirthDate>01/08/2009 15:00:00</BirthDate>
</Student>
My object:
public class Student
{
public string Name { get; set; }
public DateTime
BirthDate
{ get; set; }
public int Grade { get; set; }
}
Reply
Answers (
3
)
Same message error coming always back
Need suggestions about .Net Core and EFCore