I posted a similar question but confusion set in so I feel the need to repost but with more clarity.

I am trying to insert into a database (SqlCompact3.5) colum which requires a DateTime datatype.

In order to get the current date & time i wish to use something like this:

SqlParameter vetCreated = new SqlParameter("@vetCreated", SqlDbType.DateTime);
vetCreated.Value = DateTime.Now;

However this results in a compile error saying DateTime() is a 'method'. which is not valid in the given context.

Any ideas?

Link to Badly Asked Previous Question

link|improve this question

What is the exact error and on which line? – SLaks May 22 '11 at 22:54
1  
Duplicate of c# DateTime Misunderstanding. Edit your original question, don't repost. – Michael Petrotta May 22 '11 at 22:55
Be careful with your question asking. there is an automated filter in place that bans users from asking questions if they do certain things (get lots of downvotes, repost questions, have questions deleted, etc) – JK. May 22 '11 at 23:00
feedback

3 Answers

up vote 2 down vote accepted

Try changing DateTime.Now to System.DateTime.Now and see if it compiles now.

link|improve this answer
Thanks this worked. It had been driving me nuts and everyone else i think. My apologies to Stackoverflow but thanks for coming through =) – DevilCode May 22 '11 at 23:14
feedback

I have a hunch that you have DateTime method in your class. So when you call DateTime.Now compiler gets confused either you want to use DateTime class or method.

Prefix DateTime.Now with namespace System.DateTime.Now.

link|improve this answer
feedback

You probably have a function named DateTime() in your class.

Change that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.