Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // ------------------------------------------------------------------------------ //Returns the index of a ///in /// the . // 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.Returns the index of a ///in /// the .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Rotation3DAnimation.cs
- MimeMapping.cs
- EnumerationRangeValidationUtil.cs
- TextLineResult.cs
- ValidationPropertyAttribute.cs
- TextElement.cs
- HttpApplicationFactory.cs
- BufferedGraphics.cs
- GestureRecognizer.cs
- ApplicationDirectoryMembershipCondition.cs
- xmlfixedPageInfo.cs
- TakeQueryOptionExpression.cs
- PropertyMappingExceptionEventArgs.cs
- BooleanKeyFrameCollection.cs
- WindowsListViewGroupHelper.cs
- WebPartMenu.cs
- SectionUpdates.cs
- AudioSignalProblemOccurredEventArgs.cs
- SizeKeyFrameCollection.cs
- _ConnectOverlappedAsyncResult.cs
- SimpleBitVector32.cs
- WindowsPrincipal.cs
- Stylus.cs
- BinaryFormatterWriter.cs
- Deserializer.cs
- ErrorStyle.cs
- XmlSchemaElement.cs
- log.cs
- HasCopySemanticsAttribute.cs
- RuntimeIdentifierPropertyAttribute.cs
- QueryActivatableWorkflowsCommand.cs
- ExpressionConverter.cs
- EntityObject.cs
- HostingEnvironmentWrapper.cs
- OpCellTreeNode.cs
- Vector3DCollection.cs
- ColorPalette.cs
- AllowedAudienceUriElement.cs
- UserControlBuildProvider.cs
- XmlDocumentFieldSchema.cs
- TabPanel.cs
- GZipDecoder.cs
- GB18030Encoding.cs
- QilGenerator.cs
- SafeNativeMethods.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- COMException.cs
- TextViewBase.cs
- RoleProviderPrincipal.cs
- PointUtil.cs
- SystemTcpConnection.cs
- MembershipAdapter.cs
- ObjectTag.cs
- ContractReference.cs
- HostedHttpRequestAsyncResult.cs
- DoubleKeyFrameCollection.cs
- OracleDataReader.cs
- TypeReference.cs
- SplineQuaternionKeyFrame.cs
- StateMachineWorkflowDesigner.cs
- _NativeSSPI.cs
- ReflectPropertyDescriptor.cs
- StringStorage.cs
- TemplateAction.cs
- ListView.cs
- ClientClassGenerator.cs
- ToolStripLocationCancelEventArgs.cs
- Funcletizer.cs
- EncodedStreamFactory.cs
- BindingGroup.cs
- AutomationElement.cs
- Context.cs
- CodeBinaryOperatorExpression.cs
- OleAutBinder.cs
- ObjectListItemCollection.cs
- AspNetCacheProfileAttribute.cs
- EntityAdapter.cs
- Page.cs
- EllipticalNodeOperations.cs
- EntitySqlQueryState.cs
- RuntimeConfigurationRecord.cs
- TreeNode.cs
- XmlWellformedWriter.cs
- SpellerStatusTable.cs
- FormsIdentity.cs
- ViewSimplifier.cs
- IIS7WorkerRequest.cs
- SpecialNameAttribute.cs
- TagNameToTypeMapper.cs
- UnsafeNativeMethods.cs
- TraceListeners.cs
- ConvertEvent.cs
- TeredoHelper.cs
- Message.cs
- DataGridColumn.cs
- PreviewKeyDownEventArgs.cs
- SQLDateTime.cs
- PagesSection.cs
- DeferredSelectedIndexReference.cs
- CodeAccessSecurityEngine.cs