I have to convert some of my VB6 Code to C# , In my VB6 I am having code like
dim I as Long
I = Weekday(Now, vbFriday)
I want equivalent of the same in C#
Can any one Help ?
|
feedback
|
This can be called using:
The above outputs:
as Tuesday is 4 days after Friday. | ||||
|
feedback
|
|
Yes, Each DateTime value has a built in property called DayOfWeek that returns a enumeration of the same name...
If you want the integral value just cast the enumeration value to an int.
You'll have to add a constant from 1 to 6 and do Mod 7 to realign it to another day besides Sunday, however... | |||
|
feedback
|
|
You mean the DateTime.DayOfWeek property?
| |||
|
feedback
|
|
I don't think there is an equivalent of the two argument form of VB's Weekday function. You could emulate it using something like this;
Then calling it like so:
It returns 4 for today, as Tuesday is 4 days after Friday. | |||
|
feedback
|