using a integer variable with a vb.net datetime literal

A

awrightus

I am trying to incorporate a integer variable with a vb.net datetime
literal.

For example:

Dim Jan1 As DateTime = (#1/1/2006#) would be a literal for January 1st
of this year. But I have a integer variable that represents the
current year, intYear, for example.

Is there a way to combine the use of a integer variable with the
datetime literal? This obviously doesn't work, but I'm trying
something like this:

Dim Jan1 As DateTime = (#1/1/intYear#)

Any help appreciated. Thanks.

Steve
 
M

Mattias Sjögren

Steve,
I am trying to incorporate a integer variable with a vb.net datetime
literal.

That doesn't quite make sense. Literals are by definition compile-time
constants, not variable. That said, you can do

Dim Jan1 As New DateTime(intyear, 1, 1)



Mattias
 
C

Cleetus Awreetus

Okay, I didn't explain myself so well, but you answered my question
perfectly. Thanks.

Steve
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top