Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / InputLanguageCollection.cs / 1305376 / InputLanguageCollection.cs
// ------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// -----------------------------------------------------------------------------
//
namespace System.Windows.Forms {
using System;
using System.Collections;
///
///
///
/// A collection that stores objects.
///
///
public class InputLanguageCollection : ReadOnlyCollectionBase {
///
///
///
/// Initializes a new instance of containing any array of objects.
///
///
internal InputLanguageCollection(InputLanguage[] value) {
InnerList.AddRange(value);
}
///
///
/// Represents the entry at the specified index of the .
///
public InputLanguage this[int index] {
get {
return ((InputLanguage)(InnerList[index]));
}
}
///
///
/// Gets a value indicating whether the
/// contains the specified .
///
public bool Contains(InputLanguage value) {
return InnerList.Contains(value);
}
///
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(InputLanguage[] array, int index) {
InnerList.CopyTo(array, index);
}
///
///
/// Returns the index of a in
/// the .
///
public int IndexOf(InputLanguage value) {
return InnerList.IndexOf(value);
}
}
}
// 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
- altserialization.cs
- AlgoModule.cs
- Itemizer.cs
- TemplateInstanceAttribute.cs
- XmlSchemaSimpleContentRestriction.cs
- ErrorStyle.cs
- View.cs
- XmlWrappingWriter.cs
- ProfessionalColors.cs
- CopyNamespacesAction.cs
- DefinitionBase.cs
- ServiceRouteHandler.cs
- SizeAnimationBase.cs
- Span.cs
- Rules.cs
- EntitySqlQueryCacheEntry.cs
- ApplicationFileCodeDomTreeGenerator.cs
- RadioButton.cs
- ToolConsole.cs
- DoubleConverter.cs
- DBCSCodePageEncoding.cs
- MobilePage.cs
- sqlstateclientmanager.cs
- TableItemStyle.cs
- ScriptBehaviorDescriptor.cs
- SafeFindHandle.cs
- WhitespaceRule.cs
- PriorityBindingExpression.cs
- EventProvider.cs
- ListViewDeletedEventArgs.cs
- Bezier.cs
- ImageListUtils.cs
- IsolatedStoragePermission.cs
- TraceContextEventArgs.cs
- Viewport2DVisual3D.cs
- MarkerProperties.cs
- Math.cs
- StructuredTypeEmitter.cs
- TokenBasedSet.cs
- designeractionbehavior.cs
- ItemAutomationPeer.cs
- Executor.cs
- DataGridViewImageColumn.cs
- RegexFCD.cs
- MimeImporter.cs
- AllMembershipCondition.cs
- RectIndependentAnimationStorage.cs
- BidPrivateBase.cs
- Point3DValueSerializer.cs
- RelativeSource.cs
- LocalizedNameDescriptionPair.cs
- Type.cs
- ShaperBuffers.cs
- ProviderCommandInfoUtils.cs
- LassoHelper.cs
- DataTableNewRowEvent.cs
- XsltInput.cs
- RegisteredDisposeScript.cs
- TextParaClient.cs
- SpeakProgressEventArgs.cs
- FunctionQuery.cs
- DocumentPageViewAutomationPeer.cs
- DebugController.cs
- SimpleApplicationHost.cs
- SqlFileStream.cs
- ByteKeyFrameCollection.cs
- ColorTransform.cs
- EncoderBestFitFallback.cs
- DateTimeHelper.cs
- ViewManager.cs
- LoginAutoFormat.cs
- ExportOptions.cs
- COAUTHINFO.cs
- SecurityPolicySection.cs
- TraceData.cs
- JpegBitmapDecoder.cs
- TimeStampChecker.cs
- BitmapEffect.cs
- ToggleProviderWrapper.cs
- VariableBinder.cs
- MetadataCache.cs
- RuleDefinitions.cs
- TcpDuplicateContext.cs
- DecimalAnimationUsingKeyFrames.cs
- HttpProfileBase.cs
- Compiler.cs
- HMACSHA1.cs
- PreservationFileWriter.cs
- MimeBasePart.cs
- PointAnimationBase.cs
- StrokeNodeEnumerator.cs
- TextRange.cs
- ClientSettings.cs
- CalendarKeyboardHelper.cs
- List.cs
- GACMembershipCondition.cs
- Parameter.cs
- SatelliteContractVersionAttribute.cs
- BypassElement.cs
- PeerName.cs