Click here to Skip to main content
Click here to Skip to main content

Partial DateTime Object Equality

By , 6 Feb 2011
 
If you use the logic from your FlagIsSet function, you can remove half of your tests:
 
    DatePartFlags equalFlags = DatePartFlags.Ticks;
    equalFlags |= (now.Year == then.Year) ? DatePartFlags.Year : 0;
    equalFlags |= (now.Month == then.Month) ? DatePartFlags.Month : 0;
    equalFlags |= (now.Day == then.Day) ? DatePartFlags.Day : 0;
    equalFlags |= (now.Hour == then.Hour) ? DatePartFlags.Hour : 0;
    equalFlags |= (now.Minute == then.Minute) ? DatePartFlags.Minute : 0;
    equalFlags |= (now.Second == then.Second) ? DatePartFlags.Second : 0;
    equalFlags |= (now.Millisecond == then.Millisecond) ? DatePartFlags.Millisecond : 0;
    isEqual = (flags & equalFlags) == flags;

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

jswolf19
Software Developer
Japan Japan
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 7 Feb 2011
Article Copyright 2011 by jswolf19
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid