Click here to Skip to main content
15,881,559 members
Home / Discussions / C#
   

C#

 
GeneralRe: force ToString() override in Deriv classed (already having a Base class) Pin
Not Active8-Mar-10 4:20
mentorNot Active8-Mar-10 4:20 
GeneralRe: force ToString() override in Deriv classed (already having a Base class) Pin
George Nistor8-Mar-10 6:49
George Nistor8-Mar-10 6:49 
GeneralRe: force ToString() override in Deriv classed (already having a Base class) Pin
Keith Barrow8-Mar-10 6:58
professionalKeith Barrow8-Mar-10 6:58 
GeneralRe: force ToString() override in Deriv classed (already having a Base class) Pin
George Nistor8-Mar-10 7:26
George Nistor8-Mar-10 7:26 
GeneralRe: force ToString() override in Deriv classed (already having a Base class) Pin
George Nistor8-Mar-10 7:34
George Nistor8-Mar-10 7:34 
AnswerRe: force ToString() override in Deriv classed (already having a Base class) Pin
PIEBALDconsult8-Mar-10 6:57
mvePIEBALDconsult8-Mar-10 6:57 
QuestionReturn Week Number of the Current Month Pin
codeproject_Tarun8-Mar-10 3:32
codeproject_Tarun8-Mar-10 3:32 
AnswerRe: Return Week Number of the Current Month Pin
kevinnicol8-Mar-10 3:46
kevinnicol8-Mar-10 3:46 
If your looking for how many weeks have passed in the month that a date is in you can use this.

static int weekNum1(DateTime T)
{
    return 1 + (int)T.Day / 7;
}


or if your looking for how many business weeks (ie weeks starting on sunday) you can use this

static int weekNum2(DateTime T)
{
    int weekNum = 1;

    DateTime w = new DateTime(T.Year, T.Month, 2);

    while (w <= T)
    {
        if (w.DayOfWeek == DayOfWeek.Sunday)
            weekNum++;

        w = w.AddDays(1.0);
    }

    return weekNum;
}

AnswerCross-post Pin
Kristian Sixhøj8-Mar-10 4:02
Kristian Sixhøj8-Mar-10 4:02 
QuestionRegarding deployment of windows service Pin
Håkan Axheim8-Mar-10 2:37
Håkan Axheim8-Mar-10 2:37 
AnswerMessage Closed Pin
8-Mar-10 4:00
stancrm8-Mar-10 4:00 
GeneralRe: Regarding deployment of windows service Pin
Håkan Axheim8-Mar-10 4:04
Håkan Axheim8-Mar-10 4:04 
GeneralMessage Closed Pin
8-Mar-10 4:13
stancrm8-Mar-10 4:13 
GeneralRe: Regarding deployment of windows service Pin
Håkan Axheim8-Mar-10 9:30
Håkan Axheim8-Mar-10 9:30 
QuestionSessionTimeOut Problem Pin
shaina22318-Mar-10 2:22
shaina22318-Mar-10 2:22 
AnswerRe: SessionTimeOut Problem Pin
Sandeep Mewara8-Mar-10 9:57
mveSandeep Mewara8-Mar-10 9:57 
QuestionReading and Writing Reg_Binary Pin
sriharichowdary8-Mar-10 2:10
sriharichowdary8-Mar-10 2:10 
AnswerRe: Reading and Writing Reg_Binary Pin
Covean8-Mar-10 2:34
Covean8-Mar-10 2:34 
AnswerRe: Reading and Writing Reg_Binary Pin
The Man from U.N.C.L.E.8-Mar-10 2:39
The Man from U.N.C.L.E.8-Mar-10 2:39 
QuestionProblem with Random class in C# Pin
yadlaprasad8-Mar-10 1:36
yadlaprasad8-Mar-10 1:36 
AnswerRe: Problem with Random class in C# Pin
Covean8-Mar-10 1:45
Covean8-Mar-10 1:45 
AnswerRe: Problem with Random class in C# Pin
Phil J Pearson8-Mar-10 1:47
Phil J Pearson8-Mar-10 1:47 
AnswerRe: Problem with Random class in C# Pin
PIEBALDconsult8-Mar-10 3:48
mvePIEBALDconsult8-Mar-10 3:48 
AnswerRe: Problem with Random class in C# Pin
Kythen8-Mar-10 9:45
Kythen8-Mar-10 9:45 
Questionhow to browse Pin
Guru Brahmam Chowdary8-Mar-10 0:58
Guru Brahmam Chowdary8-Mar-10 0:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.