Hi, in VB i could use the keyword Now to get the current DateTime, but C#
doesnt have that. How can i get the current time? thanks

Signature
-iwdu15
Tom Porterfield - 24 Nov 2006 02:53 GMT
> Hi, in VB i could use the keyword Now to get the current DateTime, but C#
> doesnt have that. How can i get the current time? thanks
DateTime current = DateTime.Now;

Signature
Tom Porterfield
iwdu15 - 24 Nov 2006 03:33 GMT
haha wow im oblivious, thanks a lot

Signature
-iwdu15
Duggi - 24 Nov 2006 06:02 GMT
Hi
DateTime is a class in System namespace. As Base class library is
shared across the platform, C# can happily use DateTime
You can use the same class DateTime in C# also.
DateTime current = DateTime.Now; will give you the current date time
:-)
Thanks
-Srinivas.
> > Hi, in VB i could use the keyword Now to get the current DateTime, but C#
> > doesnt have that. How can i get the current time? thanks
>
> DateTime current = DateTime.Now;
Cor Ligthert [MVP] - 24 Nov 2006 06:17 GMT
iwdu15,
"Now" is a method in the standard Net namespace Microsoft.VisualBasic, you
can use it in C# in the same way as every other standard Net namespace.
In VB you can use in two ways the "using" declaration of namespaces. One is
in the project properties and one is in the same way although you use
"Import" in the same way as in C#. In VB.Net are in the same way as in C#
automaticly set some namespaces to use when you open things like a form.
Including in that is forever the namespace VisualBasic, however you don't
see it, it is in the Project Propertys.
For the rest C# and VB.Net are here again exactly the same.
(I would never use this namespace in C# only to get the Now method by the
way).
I hope this explains it a little bit.
Cor
> Hi, in VB i could use the keyword Now to get the current DateTime, but C#
> doesnt have that. How can i get the current time? thanks