Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Configuration / System / Configuration / SafeBitVector32.cs / 1 / SafeBitVector32.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Threading; namespace System.Configuration { // // This is a multithreadsafe version of System.Collections.Specialized.BitVector32. // [Serializable] internal struct SafeBitVector32 { private volatile int _data; internal SafeBitVector32(int data) { this._data = data; } #if UNUSED_CODE internal bool IsAnySet(int bitMask) { int data = _data; return (data & bitMask) != 0; } #endif internal bool this[int bit] { get { int data = _data; return (data & bit) == bit; } set { for (;;) { int oldData = _data; int newData; if (value) { newData = oldData | bit; } else { newData = oldData & ~bit; } #pragma warning disable 0420 int result = Interlocked.CompareExchange(ref _data, newData, oldData); #pragma warning restore 0420 if (result == oldData) { break; } } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Threading; namespace System.Configuration { // // This is a multithreadsafe version of System.Collections.Specialized.BitVector32. // [Serializable] internal struct SafeBitVector32 { private volatile int _data; internal SafeBitVector32(int data) { this._data = data; } #if UNUSED_CODE internal bool IsAnySet(int bitMask) { int data = _data; return (data & bitMask) != 0; } #endif internal bool this[int bit] { get { int data = _data; return (data & bit) == bit; } set { for (;;) { int oldData = _data; int newData; if (value) { newData = oldData | bit; } else { newData = oldData & ~bit; } #pragma warning disable 0420 int result = Interlocked.CompareExchange(ref _data, newData, oldData); #pragma warning restore 0420 if (result == oldData) { break; } } } } } } // 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
- DictionaryKeyPropertyAttribute.cs
- QuotedPrintableStream.cs
- XmlUtf8RawTextWriter.cs
- TraceHandlerErrorFormatter.cs
- SslStream.cs
- TreeWalkHelper.cs
- EntryIndex.cs
- OdbcInfoMessageEvent.cs
- ConfigXmlWhitespace.cs
- SourceItem.cs
- TableCellAutomationPeer.cs
- TableSectionStyle.cs
- IsolatedStoragePermission.cs
- QilInvoke.cs
- TableHeaderCell.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- XmlBinaryWriter.cs
- CompModSwitches.cs
- TypePropertyEditor.cs
- ImageUrlEditor.cs
- ObjectDataSourceEventArgs.cs
- GroupQuery.cs
- Scheduling.cs
- JavaScriptString.cs
- FilteredDataSetHelper.cs
- VisualStyleInformation.cs
- EdmComplexTypeAttribute.cs
- NativeWindow.cs
- GPPOINT.cs
- HostAdapter.cs
- DataGridViewTopLeftHeaderCell.cs
- MatrixValueSerializer.cs
- EventListenerClientSide.cs
- DesignerAttribute.cs
- ComboBoxItem.cs
- DBPropSet.cs
- ValidateNames.cs
- OptimalTextSource.cs
- CustomExpression.cs
- DoubleUtil.cs
- XmlNullResolver.cs
- ToolboxItemWrapper.cs
- NamedElement.cs
- CodeGen.cs
- CompilerScopeManager.cs
- IgnoreFileBuildProvider.cs
- ValidationResult.cs
- TreeNodeConverter.cs
- EarlyBoundInfo.cs
- StackOverflowException.cs
- WebPartMenuStyle.cs
- QilList.cs
- DataColumnChangeEvent.cs
- ChannelManager.cs
- BufferModesCollection.cs
- InvariantComparer.cs
- InputProcessorProfiles.cs
- Selector.cs
- XmlDataSourceView.cs
- OracleCommand.cs
- WorkflowItemPresenter.cs
- WebPartMenuStyle.cs
- BufferedOutputAsyncStream.cs
- httpstaticobjectscollection.cs
- ObjectSerializerFactory.cs
- SafeProcessHandle.cs
- Event.cs
- EmissiveMaterial.cs
- ToolStripGripRenderEventArgs.cs
- ExtendedTransformFactory.cs
- DataGridViewCheckBoxColumn.cs
- WebPartTransformerAttribute.cs
- ImageField.cs
- SingleAnimation.cs
- RelatedCurrencyManager.cs
- SqlInternalConnection.cs
- DSACryptoServiceProvider.cs
- ItemMap.cs
- Utils.cs
- ProtectedConfigurationSection.cs
- BinaryWriter.cs
- EnlistmentState.cs
- FormsAuthentication.cs
- AuthorizationRuleCollection.cs
- XpsS0ValidatingLoader.cs
- DataObjectSettingDataEventArgs.cs
- Compensate.cs
- ToolStripDropDownClosingEventArgs.cs
- UniqueConstraint.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- RouteItem.cs
- CompoundFileIOPermission.cs
- COM2TypeInfoProcessor.cs
- HashHelper.cs
- CompressEmulationStream.cs
- StrokeCollectionConverter.cs
- DnsEndpointIdentity.cs
- HashCodeCombiner.cs
- ComboBoxItem.cs
- ReflectionTypeLoadException.cs