Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / InputLanguageCollection.cs / 1 / InputLanguageCollection.cs
// ------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------------- // namespace System.Windows.Forms { using System; using System.Collections; ////// /// public class InputLanguageCollection : ReadOnlyCollectionBase { ////// A collection that stores ///objects. /// /// /// internal InputLanguageCollection(InputLanguage[] value) { InnerList.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// /// public InputLanguage this[int index] { get { return ((InputLanguage)(InnerList[index])); } } ///Represents the entry at the specified index of the ///. /// /// public bool Contains(InputLanguage value) { return InnerList.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// /// public void CopyTo(InputLanguage[] array, int index) { InnerList.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// /// public int IndexOf(InputLanguage value) { return InnerList.IndexOf(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Returns the index of a ///in /// the .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GacUtil.cs
- CqlLexerHelpers.cs
- SettingsPropertyIsReadOnlyException.cs
- TransformationRules.cs
- safemediahandle.cs
- Bits.cs
- ScrollEventArgs.cs
- RtfControlWordInfo.cs
- Scheduler.cs
- LoginDesignerUtil.cs
- ParameterElement.cs
- Label.cs
- WebServiceHost.cs
- SspiSafeHandles.cs
- ColumnMapVisitor.cs
- StandardTransformFactory.cs
- WinEventHandler.cs
- RequiredAttributeAttribute.cs
- CombinedGeometry.cs
- BrowserTree.cs
- GetIndexBinder.cs
- DataSourceXmlElementAttribute.cs
- ParseElement.cs
- QuadraticBezierSegment.cs
- StreamInfo.cs
- Control.cs
- CompiledRegexRunner.cs
- IApplicationTrustManager.cs
- QuaternionConverter.cs
- Vector.cs
- EnvelopedSignatureTransform.cs
- XmlDictionaryWriter.cs
- LowerCaseStringConverter.cs
- EntityObject.cs
- XmlValidatingReader.cs
- Path.cs
- CreatingCookieEventArgs.cs
- EntitySqlException.cs
- ToolTipAutomationPeer.cs
- WebPartCatalogAddVerb.cs
- ImageMapEventArgs.cs
- DbParameterHelper.cs
- PeerSecurityManager.cs
- CellQuery.cs
- DataPagerFieldItem.cs
- XmlIlTypeHelper.cs
- Encoding.cs
- SmiMetaDataProperty.cs
- DefaultSettingsSection.cs
- ConfigurationManager.cs
- WebDisplayNameAttribute.cs
- SqlSupersetValidator.cs
- TextEditorDragDrop.cs
- ExpressionPrefixAttribute.cs
- AncillaryOps.cs
- WindowsAuthenticationModule.cs
- HorizontalAlignConverter.cs
- WebControl.cs
- PrintPreviewControl.cs
- WindowsFormsLinkLabel.cs
- ScriptHandlerFactory.cs
- TemplateAction.cs
- UnsignedPublishLicense.cs
- NativeMethods.cs
- FilteredXmlReader.cs
- UdpReplyToBehavior.cs
- TaskDesigner.cs
- TableLayout.cs
- RegistryKey.cs
- CodeObject.cs
- SelectorItemAutomationPeer.cs
- NetworkAddressChange.cs
- ReadWriteObjectLock.cs
- IndexedString.cs
- ExternalCalls.cs
- LowerCaseStringConverter.cs
- InstalledFontCollection.cs
- PathGeometry.cs
- RowTypePropertyElement.cs
- FileDialogPermission.cs
- XmlEventCache.cs
- WebSysDisplayNameAttribute.cs
- __TransparentProxy.cs
- DataBoundLiteralControl.cs
- ControlParser.cs
- CssTextWriter.cs
- ProfileServiceManager.cs
- WindowsButton.cs
- ImageConverter.cs
- ImageSource.cs
- NumericUpDown.cs
- RSAPKCS1KeyExchangeFormatter.cs
- ResourceReferenceKeyNotFoundException.cs
- ProcessHostServerConfig.cs
- SweepDirectionValidation.cs
- ToolBar.cs
- Axis.cs
- PathGradientBrush.cs
- IListConverters.cs
- ObjectAnimationBase.cs