Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / 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 : [....] - 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RequestSecurityTokenResponseCollection.cs
- StreamingContext.cs
- BuildManagerHost.cs
- UserPreferenceChangingEventArgs.cs
- SerialErrors.cs
- FontResourceCache.cs
- ImplicitInputBrush.cs
- DerivedKeySecurityTokenStub.cs
- CreateDataSourceDialog.cs
- PropertyDescriptorCollection.cs
- CodeMemberField.cs
- ScrollPattern.cs
- StaticResourceExtension.cs
- Int32Converter.cs
- XpsS0ValidatingLoader.cs
- EncoderReplacementFallback.cs
- RequestBringIntoViewEventArgs.cs
- CompModHelpers.cs
- RowCache.cs
- QueryOperationResponseOfT.cs
- DetailsViewUpdatedEventArgs.cs
- BamlTreeMap.cs
- ValueExpressions.cs
- ObjectDataSourceChooseMethodsPanel.cs
- SessionPageStatePersister.cs
- ExternalCalls.cs
- UserControl.cs
- CreateUserWizardStep.cs
- CommonDialog.cs
- Variant.cs
- RecordConverter.cs
- DesignerLabelAdapter.cs
- Light.cs
- CompositeControl.cs
- ParenthesizePropertyNameAttribute.cs
- DiffuseMaterial.cs
- Cursor.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- UITypeEditor.cs
- ValidationError.cs
- DataTransferEventArgs.cs
- NetTcpBinding.cs
- GroupBox.cs
- PersistenceProvider.cs
- CachedRequestParams.cs
- NegotiateStream.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- _UriSyntax.cs
- SiblingIterators.cs
- GenericWebPart.cs
- BindingMAnagerBase.cs
- PageWrapper.cs
- ContractComponent.cs
- BindingMemberInfo.cs
- DataControlLinkButton.cs
- PingOptions.cs
- EntityDataSourceStatementEditorForm.cs
- DataGridHeaderBorder.cs
- NumberFormatter.cs
- ChannelProtectionRequirements.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- StringAnimationBase.cs
- ActivityDesignerAccessibleObject.cs
- EventLogPermission.cs
- StartUpEventArgs.cs
- _HelperAsyncResults.cs
- MsmqIntegrationSecurityElement.cs
- DataMemberConverter.cs
- DefaultPrintController.cs
- ColorAnimationBase.cs
- DefaultValueAttribute.cs
- UIElementPropertyUndoUnit.cs
- Rule.cs
- LinkButton.cs
- DataError.cs
- AssemblyBuilder.cs
- DocumentViewerAutomationPeer.cs
- FlowDocumentPageViewerAutomationPeer.cs
- recordstate.cs
- ParallelTimeline.cs
- DataBinder.cs
- ScriptControl.cs
- _AutoWebProxyScriptWrapper.cs
- BitmapEffectState.cs
- ByteStack.cs
- RuntimeConfig.cs
- XPathArrayIterator.cs
- MultiPageTextView.cs
- ListBoxItemWrapperAutomationPeer.cs
- SystemNetworkInterface.cs
- DbConnectionPoolGroupProviderInfo.cs
- ForeignKeyFactory.cs
- WindowsStatic.cs
- IIS7WorkerRequest.cs
- ProfileService.cs
- EventRouteFactory.cs
- storepermission.cs
- StrokeRenderer.cs
- PolicyValidator.cs
- FlowDocument.cs