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
Maha
NA
0
324.8k
DateTime
Jul 4 2013 5:29 PM
In this program out is:
04/07/2013 5:19:12 PM
False
But
expected
output is:
04/07/2013 5:19:12 PM
True
Please correct this program.
using System;
class Program
{
static void Main()
{
DateTime value = DateTime.Now;
Console.WriteLine(value);
Console.WriteLine(value == DateTime.Now);
Console.ReadKey();
}
}
/*
04/07/2013 5:19:12 PM
False
*/
Reply
Answers (
4
)
Compiling but no out put
Update and Delete in Session Datatable in C#