Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Base / MS / Internal / NamedObject.cs / 1 / NamedObject.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Placeholder object, with a name that appears in the debugger // //--------------------------------------------------------------------------- using System; using System.Globalization; using MS.Internal.WindowsBase; namespace MS.Internal { ////// An instance of this class can be used wherever you might otherwise use /// "new Object()". The name will show up in the debugger, instead of /// merely "{object}" /// [FriendAccessAllowed] // Built into Base, also used by Framework. internal class NamedObject { public NamedObject(string name) { if (String.IsNullOrEmpty(name)) throw new ArgumentNullException(name); _name = name; } public override string ToString() { if (_name[0] != '{') { // lazily add {} around the name, to avoid allocating a string // until it's actually needed _name = String.Format(CultureInfo.InvariantCulture, "{{{0}}}", _name); } return _name; } string _name; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Placeholder object, with a name that appears in the debugger // //--------------------------------------------------------------------------- using System; using System.Globalization; using MS.Internal.WindowsBase; namespace MS.Internal { ////// An instance of this class can be used wherever you might otherwise use /// "new Object()". The name will show up in the debugger, instead of /// merely "{object}" /// [FriendAccessAllowed] // Built into Base, also used by Framework. internal class NamedObject { public NamedObject(string name) { if (String.IsNullOrEmpty(name)) throw new ArgumentNullException(name); _name = name; } public override string ToString() { if (_name[0] != '{') { // lazily add {} around the name, to avoid allocating a string // until it's actually needed _name = String.Format(CultureInfo.InvariantCulture, "{{{0}}}", _name); } return _name; } string _name; } } // 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
- GroupByExpressionRewriter.cs
- Closure.cs
- SyndicationItem.cs
- PropertyTab.cs
- BehaviorEditorPart.cs
- DrawingVisualDrawingContext.cs
- DynamicDocumentPaginator.cs
- RangeValidator.cs
- PropertyPathConverter.cs
- DesignTimeXamlWriter.cs
- DataGridViewDataErrorEventArgs.cs
- DataListItemEventArgs.cs
- PointIndependentAnimationStorage.cs
- QuaternionAnimationUsingKeyFrames.cs
- SingleObjectCollection.cs
- NetworkAddressChange.cs
- XmlStringTable.cs
- MachineSettingsSection.cs
- Normalizer.cs
- GeneratedCodeAttribute.cs
- TextServicesPropertyRanges.cs
- EditorPart.cs
- TemplateParser.cs
- NavigationProperty.cs
- BamlTreeMap.cs
- IntPtr.cs
- Claim.cs
- RepeaterCommandEventArgs.cs
- CommonGetThemePartSize.cs
- RightsManagementEncryptionTransform.cs
- ZipIOExtraFieldPaddingElement.cs
- DelegateBodyWriter.cs
- GroupItemAutomationPeer.cs
- PersonalizationStateQuery.cs
- WebColorConverter.cs
- Endpoint.cs
- DispatcherProcessingDisabled.cs
- HashRepartitionEnumerator.cs
- WeakReferenceList.cs
- WebConfigurationHostFileChange.cs
- ConfigurationSettings.cs
- AnnotationObservableCollection.cs
- DrawingCollection.cs
- DropDownList.cs
- PageRequestManager.cs
- Misc.cs
- SEHException.cs
- TimerEventSubscriptionCollection.cs
- ProbeRequestResponseAsyncResult.cs
- PublisherMembershipCondition.cs
- CacheForPrimitiveTypes.cs
- FormViewPagerRow.cs
- Accessible.cs
- SmtpFailedRecipientsException.cs
- MetadataCache.cs
- PropertyInformationCollection.cs
- SqlBinder.cs
- TextParagraphProperties.cs
- SqlUDTStorage.cs
- DataGridRelationshipRow.cs
- WinEventTracker.cs
- HtmlDocument.cs
- CompilerInfo.cs
- VariableElement.cs
- MulticastNotSupportedException.cs
- ColorMatrix.cs
- AuthenticationManager.cs
- XmlSerializerImportOptions.cs
- Marshal.cs
- WebBaseEventKeyComparer.cs
- Invariant.cs
- Propagator.Evaluator.cs
- TextFormatterHost.cs
- HtmlInputReset.cs
- XmlILTrace.cs
- OdbcConnectionHandle.cs
- TCPClient.cs
- ConsumerConnectionPointCollection.cs
- RangeValuePattern.cs
- FileEnumerator.cs
- RawStylusInputCustomData.cs
- MachineKeySection.cs
- Rotation3DAnimationBase.cs
- SkinBuilder.cs
- TraceContext.cs
- ClosableStream.cs
- WebServiceMethodData.cs
- CodeEntryPointMethod.cs
- TimeSpan.cs
- DoubleAverageAggregationOperator.cs
- EnvelopedPkcs7.cs
- ellipse.cs
- LinearKeyFrames.cs
- OracleTransaction.cs
- PreservationFileWriter.cs
- Canvas.cs
- ButtonPopupAdapter.cs
- MembershipValidatePasswordEventArgs.cs
- ManifestResourceInfo.cs
- Span.cs