Click here to Skip to main content
15,905,679 members
Home / Discussions / C#
   

C#

 
GeneralRe: Copy a directory somewhere Pin
Giorgi Dalakishvili14-Jun-07 2:12
mentorGiorgi Dalakishvili14-Jun-07 2:12 
GeneralRe: Copy a directory somewhere Pin
Manas Bhardwaj14-Jun-07 1:59
professionalManas Bhardwaj14-Jun-07 1:59 
AnswerRe: Copy a directory somewhere Pin
Shy Agam14-Jun-07 2:13
Shy Agam14-Jun-07 2:13 
AnswerRe: Copy a directory somewhere Pin
Martin#14-Jun-07 2:25
Martin#14-Jun-07 2:25 
AnswerRe: Copy a directory somewhere Pin
David Knechtges14-Jun-07 2:34
David Knechtges14-Jun-07 2:34 
Questionconvert cyrillic from console app to Unicode C# Pin
drweb8614-Jun-07 1:16
drweb8614-Jun-07 1:16 
QuestionHow to compare two Times [modified] Pin
VenkataRamana.Gali14-Jun-07 1:08
VenkataRamana.Gali14-Jun-07 1:08 
AnswerRe: How to compare two Times Pin
Mali Perica14-Jun-07 1:30
Mali Perica14-Jun-07 1:30 
For hours and minutes only, without dates and seconds:

DateTime first;
DateTime second;

if (first.Hour > second.Hour)
{
    //first is later
}
else
    if (first.Hour == second.Hour)
        if (first.Minute > second.Minute)
        {
            //first is later
        }
        else
            if (first.Minute == second.Minute)
            {
                //they are the same
            }
            else
            {
                //second is later
            }
    else
    {
        //second is later
    }

AnswerRe: How to compare two Times Pin
Martin#14-Jun-07 1:31
Martin#14-Jun-07 1:31 
AnswerRe: How to compare two Times Pin
Muammar©14-Jun-07 1:37
Muammar©14-Jun-07 1:37 
AnswerRe: How to compare two Times Pin
Dewald14-Jun-07 1:45
Dewald14-Jun-07 1:45 
AnswerRe: How to compare two Times Pin
Luc Pattyn14-Jun-07 3:07
sitebuilderLuc Pattyn14-Jun-07 3:07 
AnswerRe: How to compare two Times Pin
andreumv14-Jun-07 3:50
andreumv14-Jun-07 3:50 
GeneralRe: How to compare two Times Pin
Martin#14-Jun-07 4:01
Martin#14-Jun-07 4:01 
AnswerRe: How to compare two Times Pin
Le centriste14-Jun-07 7:21
Le centriste14-Jun-07 7:21 
Questionupload file C# web application Pin
reddyamar_uk14-Jun-07 0:56
reddyamar_uk14-Jun-07 0:56 
AnswerRe: upload file C# web application Pin
giddy_guitarist17-Jun-07 10:16
giddy_guitarist17-Jun-07 10:16 
QuestionQuestion on iterators Pin
Dewald14-Jun-07 0:13
Dewald14-Jun-07 0:13 
AnswerRe: Question on iterators Pin
Colin Angus Mackay14-Jun-07 0:35
Colin Angus Mackay14-Jun-07 0:35 
GeneralRe: Question on iterators Pin
Dewald14-Jun-07 1:28
Dewald14-Jun-07 1:28 
GeneralRe: Question on iterators Pin
Colin Angus Mackay14-Jun-07 2:04
Colin Angus Mackay14-Jun-07 2:04 
GeneralRe: Question on iterators Pin
Dewald14-Jun-07 2:21
Dewald14-Jun-07 2:21 
AnswerRe: Question on iterators Pin
Luc Pattyn14-Jun-07 1:27
sitebuilderLuc Pattyn14-Jun-07 1:27 
GeneralRe: Question on iterators Pin
Dewald14-Jun-07 2:02
Dewald14-Jun-07 2:02 
GeneralRe: Question on iterators Pin
Luc Pattyn14-Jun-07 2:19
sitebuilderLuc Pattyn14-Jun-07 2:19 

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.