Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Globalization / DaylightTime.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlWriterTraceListener.cs
- TextBox.cs
- SocketPermission.cs
- DocumentPage.cs
- CompilerGlobalScopeAttribute.cs
- UnmanagedMemoryStreamWrapper.cs
- FixedSOMElement.cs
- X509CertificateInitiatorServiceCredential.cs
- IndexerNameAttribute.cs
- ErrorFormatterPage.cs
- MasterPageCodeDomTreeGenerator.cs
- SamlSecurityTokenAuthenticator.cs
- ColumnPropertiesGroup.cs
- BuildProviderAppliesToAttribute.cs
- SelectionGlyphBase.cs
- WaitHandle.cs
- Odbc32.cs
- MSHTMLHost.cs
- InputEventArgs.cs
- InvokeWebServiceDesigner.cs
- PositiveTimeSpanValidator.cs
- CodeDOMUtility.cs
- TextTreeText.cs
- Application.cs
- ParentControlDesigner.cs
- SpeechSeg.cs
- TraceContextRecord.cs
- AssociatedControlConverter.cs
- ReadOnlyHierarchicalDataSource.cs
- EmptyElement.cs
- BufferedStream.cs
- Item.cs
- ChannelDispatcherBase.cs
- EpmSourcePathSegment.cs
- Int16Converter.cs
- XamlReaderHelper.cs
- FormParameter.cs
- SynchronizationContext.cs
- MsmqIntegrationMessageProperty.cs
- StreamInfo.cs
- ClientSettingsStore.cs
- ModifierKeysValueSerializer.cs
- SqlProcedureAttribute.cs
- WebPartsSection.cs
- _LoggingObject.cs
- BadImageFormatException.cs
- SafeViewOfFileHandle.cs
- HashCryptoHandle.cs
- Size3DConverter.cs
- TextBoxAutomationPeer.cs
- TriState.cs
- BrowserCapabilitiesCodeGenerator.cs
- WizardPanel.cs
- TranslateTransform3D.cs
- MatrixIndependentAnimationStorage.cs
- OutputWindow.cs
- SafeMemoryMappedViewHandle.cs
- HtmlInputCheckBox.cs
- EmptyReadOnlyDictionaryInternal.cs
- PropertyToken.cs
- ServiceHostFactory.cs
- FontTypeConverter.cs
- WebPartDisplayModeCancelEventArgs.cs
- BackgroundWorker.cs
- PropertyCollection.cs
- DataRow.cs
- AllowedAudienceUriElementCollection.cs
- ADConnectionHelper.cs
- XmlSchemaComplexContentExtension.cs
- TextTreeText.cs
- XPathNavigatorReader.cs
- EventLogPropertySelector.cs
- __Error.cs
- TripleDES.cs
- LayoutTableCell.cs
- ObjectDisposedException.cs
- OutputCacheSettingsSection.cs
- Queue.cs
- SubMenuStyle.cs
- CodeDomDecompiler.cs
- EncoderParameter.cs
- HttpCachePolicy.cs
- SqlCacheDependencyDatabaseCollection.cs
- DataGridView.cs
- ListViewItem.cs
- IApplicationTrustManager.cs
- Context.cs
- UIElementIsland.cs
- wgx_render.cs
- WmlLiteralTextAdapter.cs
- NativeCppClassAttribute.cs
- Int32Rect.cs
- GenerateHelper.cs
- XmlKeywords.cs
- ModelUIElement3D.cs
- EdmComplexTypeAttribute.cs
- SiteOfOriginPart.cs
- login.cs
- OperationExecutionFault.cs
- AssociationType.cs