Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / Globalization / DaylightTime.cs / 1 / DaylightTime.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Globalization { using System; // This class represents a starting/ending time for a period of daylight saving time. [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class DaylightTime { internal DateTime m_start; internal DateTime m_end; internal TimeSpan m_delta; private DaylightTime() { } public DaylightTime(DateTime start, DateTime end, TimeSpan delta) { m_start = start; m_end = end; m_delta = delta; } // The start date of a daylight saving period. public DateTime Start { get { return m_start; } } // The end date of a daylight saving period. public DateTime End { get { return m_end; } } // Delta to stardard offset in ticks. public TimeSpan Delta { get { return m_delta; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Globalization { using System; // This class represents a starting/ending time for a period of daylight saving time. [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class DaylightTime { internal DateTime m_start; internal DateTime m_end; internal TimeSpan m_delta; private DaylightTime() { } public DaylightTime(DateTime start, DateTime end, TimeSpan delta) { m_start = start; m_end = end; m_delta = delta; } // The start date of a daylight saving period. public DateTime Start { get { return m_start; } } // The end date of a daylight saving period. public DateTime End { get { return m_end; } } // Delta to stardard offset in ticks. public TimeSpan Delta { get { return m_delta; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FunctionCommandText.cs
- DbExpressionRules.cs
- UiaCoreApi.cs
- ProfileBuildProvider.cs
- PrivateFontCollection.cs
- SingleSelectRootGridEntry.cs
- DeferredElementTreeState.cs
- PathTooLongException.cs
- _DynamicWinsockMethods.cs
- TrustLevelCollection.cs
- IntSecurity.cs
- FormViewDeleteEventArgs.cs
- TableLayoutStyleCollection.cs
- WCFBuildProvider.cs
- TraceHandlerErrorFormatter.cs
- EntityDataSourceSelectingEventArgs.cs
- OpenFileDialog.cs
- InputLangChangeRequestEvent.cs
- xmlglyphRunInfo.cs
- BitmapFrame.cs
- XmlNotation.cs
- MsmqReceiveParameters.cs
- PermissionSetTriple.cs
- StrokeNode.cs
- ProxyElement.cs
- PageStatePersister.cs
- WhitespaceSignificantCollectionAttribute.cs
- FormsAuthenticationModule.cs
- TableProviderWrapper.cs
- TextProviderWrapper.cs
- ValidationError.cs
- CompoundFileIOPermission.cs
- DataGridViewCellEventArgs.cs
- StreamGeometryContext.cs
- XmlWriterTraceListener.cs
- RangeContentEnumerator.cs
- RenderContext.cs
- DataGridViewLayoutData.cs
- URL.cs
- DataGridViewCellCancelEventArgs.cs
- Zone.cs
- WindowPatternIdentifiers.cs
- SchemaImporterExtension.cs
- XmlText.cs
- TransformerConfigurationWizardBase.cs
- OrderingExpression.cs
- LabelEditEvent.cs
- PeerHelpers.cs
- WinCategoryAttribute.cs
- XPathNavigatorKeyComparer.cs
- XmlObjectSerializerReadContext.cs
- DesignerHelpers.cs
- TdsParser.cs
- Tablet.cs
- HandledMouseEvent.cs
- InvokeMemberBinder.cs
- safex509handles.cs
- MsmqAppDomainProtocolHandler.cs
- XmlElementElement.cs
- ResourceReferenceExpression.cs
- TextRunTypographyProperties.cs
- FileUpload.cs
- DefaultCommandConverter.cs
- newitemfactory.cs
- DoWhileDesigner.xaml.cs
- UnsafePeerToPeerMethods.cs
- UIElementIsland.cs
- TypeLibConverter.cs
- metadatamappinghashervisitor.cs
- SchemaTableOptionalColumn.cs
- SerializationInfo.cs
- ResourceAttributes.cs
- DiscreteKeyFrames.cs
- SimpleHandlerBuildProvider.cs
- StandardCommandToolStripMenuItem.cs
- SmtpTransport.cs
- CodeExpressionCollection.cs
- OleDbStruct.cs
- RuntimeIdentifierPropertyAttribute.cs
- ViewCellSlot.cs
- CallbackDebugElement.cs
- MinimizableAttributeTypeConverter.cs
- ResourceWriter.cs
- HtmlInputSubmit.cs
- Accessors.cs
- FixedDocumentSequencePaginator.cs
- IndexOutOfRangeException.cs
- NonVisualControlAttribute.cs
- WindowsSysHeader.cs
- Typeface.cs
- handlecollector.cs
- PeoplePickerWrapper.cs
- OrderByBuilder.cs
- unsafenativemethodsother.cs
- SqlDuplicator.cs
- DataSourceConverter.cs
- MenuCommand.cs
- LogStore.cs
- InfoCardTrace.cs
- TypeListConverter.cs