Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataWeb / Design / system / Data / Common / Utils / StringUtil.cs / 1 / StringUtil.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Globalization; using System.Diagnostics; namespace System.Data.Common.Utils { // This class provides some useful string utilities, e.g., converting a // list to string. internal static class StringUtil { ////// This private static method checks a string to make sure that it is not empty. /// Comparing with String.Empty is not sufficient since a string with nothing /// but white space isn't considered "empty" by that rationale. /// internal static bool IsNullOrEmptyOrWhiteSpace(string value) { return IsNullOrEmptyOrWhiteSpace(value, 0); } internal static bool IsNullOrEmptyOrWhiteSpace(string value, int offset) { // don't use Trim(), which will copy the string, which may be large, just to test for emptyness //return String.IsNullOrEmpty(value) || String.IsNullOrEmpty(value.Trim()); if (null != value) { for(int i = offset; i < value.Length; ++i) { if (!Char.IsWhiteSpace(value[i])) { return false; } } } return true; } // separate implementation from IsNullOrEmptyOrWhiteSpace(string, int) because that one will // pick up the jit optimization to avoid boundary checks and the this won't is unknown (most likely not) internal static bool IsNullOrEmptyOrWhiteSpace(string value, int offset, int length) { // don't use Trim(), which will copy the string, which may be large, just to test for emptyness //return String.IsNullOrEmpty(value) || String.IsNullOrEmpty(value.Trim()); if (null != value) { length = Math.Min(value.Length, length); for(int i = offset; i < length; ++i) { if (!Char.IsWhiteSpace(value[i])) { return false; } } } return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Globalization; using System.Diagnostics; namespace System.Data.Common.Utils { // This class provides some useful string utilities, e.g., converting a // list to string. internal static class StringUtil { ////// This private static method checks a string to make sure that it is not empty. /// Comparing with String.Empty is not sufficient since a string with nothing /// but white space isn't considered "empty" by that rationale. /// internal static bool IsNullOrEmptyOrWhiteSpace(string value) { return IsNullOrEmptyOrWhiteSpace(value, 0); } internal static bool IsNullOrEmptyOrWhiteSpace(string value, int offset) { // don't use Trim(), which will copy the string, which may be large, just to test for emptyness //return String.IsNullOrEmpty(value) || String.IsNullOrEmpty(value.Trim()); if (null != value) { for(int i = offset; i < value.Length; ++i) { if (!Char.IsWhiteSpace(value[i])) { return false; } } } return true; } // separate implementation from IsNullOrEmptyOrWhiteSpace(string, int) because that one will // pick up the jit optimization to avoid boundary checks and the this won't is unknown (most likely not) internal static bool IsNullOrEmptyOrWhiteSpace(string value, int offset, int length) { // don't use Trim(), which will copy the string, which may be large, just to test for emptyness //return String.IsNullOrEmpty(value) || String.IsNullOrEmpty(value.Trim()); if (null != value) { length = Math.Min(value.Length, length); for(int i = offset; i < length; ++i) { if (!Char.IsWhiteSpace(value[i])) { return false; } } } return true; } } } // 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
- XmlTextEncoder.cs
- WebBrowserUriTypeConverter.cs
- DataServiceContext.cs
- TargetFrameworkAttribute.cs
- StyleCollection.cs
- ScrollItemPattern.cs
- FileSystemInfo.cs
- RootDesignerSerializerAttribute.cs
- StringInfo.cs
- ProcessThreadDesigner.cs
- ToolStripSplitButton.cs
- NumberSubstitution.cs
- MultipleViewProviderWrapper.cs
- WebBrowserDesigner.cs
- Process.cs
- SerializationStore.cs
- NonBatchDirectoryCompiler.cs
- PlaceHolder.cs
- WriterOutput.cs
- MemberInfoSerializationHolder.cs
- VerificationAttribute.cs
- LineInfo.cs
- VirtualDirectoryMapping.cs
- HttpRequest.cs
- TextSimpleMarkerProperties.cs
- returneventsaver.cs
- ProxyAttribute.cs
- PassportAuthentication.cs
- EventLogEntryCollection.cs
- DataServiceQuery.cs
- DesignTimeVisibleAttribute.cs
- QilValidationVisitor.cs
- Input.cs
- GlobalItem.cs
- XPathNavigatorReader.cs
- ChannelSinkStacks.cs
- exports.cs
- ObjRef.cs
- SpeechRecognizer.cs
- CodeRemoveEventStatement.cs
- HttpContext.cs
- BaseProcessProtocolHandler.cs
- XmlWrappingReader.cs
- DateTimeValueSerializerContext.cs
- DesignerRegion.cs
- OneOfTypeConst.cs
- AbstractDataSvcMapFileLoader.cs
- XmlTypeMapping.cs
- SelectionService.cs
- DataColumnCollection.cs
- XmlNamespaceDeclarationsAttribute.cs
- ObjectListComponentEditor.cs
- Misc.cs
- FormsAuthenticationConfiguration.cs
- SequentialUshortCollection.cs
- DataGridDetailsPresenterAutomationPeer.cs
- KnownBoxes.cs
- TraceSource.cs
- BuilderPropertyEntry.cs
- CngKeyBlobFormat.cs
- __Filters.cs
- WebPartVerbCollection.cs
- OleDbException.cs
- WebPartCatalogAddVerb.cs
- XamlPointCollectionSerializer.cs
- HttpPostClientProtocol.cs
- WindowsRegion.cs
- TimerElapsedEvenArgs.cs
- VectorAnimationUsingKeyFrames.cs
- DataAccessor.cs
- CrossAppDomainChannel.cs
- Grid.cs
- DbProviderFactoriesConfigurationHandler.cs
- RuntimeTrackingProfile.cs
- ComAdminInterfaces.cs
- WebServiceBindingAttribute.cs
- ParentUndoUnit.cs
- AuthenticationManager.cs
- Separator.cs
- AtomicFile.cs
- PlacementWorkspace.cs
- TextEffectCollection.cs
- GridPattern.cs
- OdbcError.cs
- EventMappingSettings.cs
- _KerberosClient.cs
- AssemblyNameProxy.cs
- ColumnCollection.cs
- NetSectionGroup.cs
- ResolveNameEventArgs.cs
- OleDbRowUpdatedEvent.cs
- infer.cs
- DropDownHolder.cs
- ComponentResourceKey.cs
- CheckBoxField.cs
- TickBar.cs
- TimeSpanMinutesConverter.cs
- IListConverters.cs
- CapabilitiesState.cs
- PointLight.cs