Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Shared / MS / Internal / SequentialUshortCollection.cs / 1 / SequentialUshortCollection.cs
//---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // Description: A class that implements ICollectionfor a sequence of numbers [0..n-1]. // // // History: // 03/21/2005 : MLeonov - Created it. // //--------------------------------------------------------------------------- using System; using System.Windows; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Text; using System.Runtime.InteropServices; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace MS.Internal { internal class SequentialUshortCollection : ICollection { public SequentialUshortCollection(ushort count) { _count = count; } #region ICollection Members public void Add(ushort item) { throw new NotSupportedException(); } public void Clear() { throw new NotSupportedException(); } public bool Contains(ushort item) { return item < _count; } public void CopyTo(ushort[] array, int arrayIndex) { if (array == null) { throw new ArgumentNullException("array"); } if (array.Rank != 1) { throw new ArgumentException(SR.Get(SRID.Collection_BadRank)); } // The extra "arrayIndex >= array.Length" check in because even if _collection.Count // is 0 the index is not allowed to be equal or greater than the length // (from the MSDN ICollection docs) if (arrayIndex < 0 || arrayIndex >= array.Length || (arrayIndex + Count) > array.Length) { throw new ArgumentOutOfRangeException("arrayIndex"); } for (ushort i = 0; i < _count; ++i) array[arrayIndex + i] = i; } public int Count { get { return _count; } } public bool IsReadOnly { get { return true; } } public bool Remove(ushort item) { throw new NotSupportedException(); } #endregion #region IEnumerable Members public IEnumerator GetEnumerator() { for (ushort i = 0; i < _count; ++i) yield return i; } #endregion #region IEnumerable Members IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable )this).GetEnumerator(); } #endregion private ushort _count; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // Description: A class that implements ICollection for a sequence of numbers [0..n-1]. // // // History: // 03/21/2005 : MLeonov - Created it. // //--------------------------------------------------------------------------- using System; using System.Windows; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Text; using System.Runtime.InteropServices; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace MS.Internal { internal class SequentialUshortCollection : ICollection { public SequentialUshortCollection(ushort count) { _count = count; } #region ICollection Members public void Add(ushort item) { throw new NotSupportedException(); } public void Clear() { throw new NotSupportedException(); } public bool Contains(ushort item) { return item < _count; } public void CopyTo(ushort[] array, int arrayIndex) { if (array == null) { throw new ArgumentNullException("array"); } if (array.Rank != 1) { throw new ArgumentException(SR.Get(SRID.Collection_BadRank)); } // The extra "arrayIndex >= array.Length" check in because even if _collection.Count // is 0 the index is not allowed to be equal or greater than the length // (from the MSDN ICollection docs) if (arrayIndex < 0 || arrayIndex >= array.Length || (arrayIndex + Count) > array.Length) { throw new ArgumentOutOfRangeException("arrayIndex"); } for (ushort i = 0; i < _count; ++i) array[arrayIndex + i] = i; } public int Count { get { return _count; } } public bool IsReadOnly { get { return true; } } public bool Remove(ushort item) { throw new NotSupportedException(); } #endregion #region IEnumerable Members public IEnumerator GetEnumerator() { for (ushort i = 0; i < _count; ++i) yield return i; } #endregion #region IEnumerable Members IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable )this).GetEnumerator(); } #endregion private ushort _count; } } // 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
- ParsedRoute.cs
- TransactionException.cs
- ReadWriteObjectLock.cs
- NumberFormatInfo.cs
- TextSelectionProcessor.cs
- SplitterDesigner.cs
- _NegoState.cs
- DataGridCommandEventArgs.cs
- ReachVisualSerializerAsync.cs
- ToolBarButtonDesigner.cs
- Hashtable.cs
- WebServiceHost.cs
- sitestring.cs
- WebPartEditorCancelVerb.cs
- InfoCardBinaryReader.cs
- DropSourceBehavior.cs
- EntityContainer.cs
- TitleStyle.cs
- EnumMemberAttribute.cs
- StickyNote.cs
- BitmapEffectGroup.cs
- MetadataCollection.cs
- CommandField.cs
- CellRelation.cs
- Bezier.cs
- RepeatButton.cs
- AsyncDataRequest.cs
- SafeHandle.cs
- HMACSHA1.cs
- SafePointer.cs
- ImageField.cs
- WorkflowEnvironment.cs
- ParallelTimeline.cs
- SlipBehavior.cs
- NetTcpSectionData.cs
- XPathQilFactory.cs
- ToolStripPanelDesigner.cs
- TextDecorations.cs
- EntityCommandDefinition.cs
- FileUpload.cs
- HostVisual.cs
- ConstructorExpr.cs
- TypeUtils.cs
- DoubleAverageAggregationOperator.cs
- EventMappingSettings.cs
- KeyTimeConverter.cs
- SoapAttributes.cs
- DataSourceHelper.cs
- MetadataItemEmitter.cs
- HashSetDebugView.cs
- Comparer.cs
- DataTable.cs
- BitmapFrameDecode.cs
- XmlComplianceUtil.cs
- DomainUpDown.cs
- SqlOuterApplyReducer.cs
- StructuralCache.cs
- WebPartEditorOkVerb.cs
- ActivityCodeDomSerializer.cs
- RadialGradientBrush.cs
- ButtonRenderer.cs
- WpfWebRequestHelper.cs
- UserPreferenceChangingEventArgs.cs
- ApplicationActivator.cs
- PropertyTab.cs
- Rss20FeedFormatter.cs
- CryptoProvider.cs
- RectValueSerializer.cs
- SoundPlayer.cs
- InvokerUtil.cs
- initElementDictionary.cs
- ContentPathSegment.cs
- OdbcInfoMessageEvent.cs
- SqlMethodCallConverter.cs
- StringValidatorAttribute.cs
- TimeManager.cs
- PageContentCollection.cs
- CalendarButton.cs
- UpDownBase.cs
- AdCreatedEventArgs.cs
- CqlGenerator.cs
- TextEditorLists.cs
- DbConnectionFactory.cs
- HtmlShim.cs
- IDQuery.cs
- DiscoveryMessageSequenceCD1.cs
- EntityDataReader.cs
- BinaryParser.cs
- XmlSchemaImporter.cs
- LongTypeConverter.cs
- AstTree.cs
- DataGridViewRowPostPaintEventArgs.cs
- InvalidPipelineStoreException.cs
- FilteredDataSetHelper.cs
- EndpointDiscoveryMetadataCD1.cs
- NodeInfo.cs
- XhtmlBasicLiteralTextAdapter.cs
- COSERVERINFO.cs
- SafeRightsManagementQueryHandle.cs
- CompilationLock.cs