Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / StringUtil.cs / 1305376 / StringUtil.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Collections; using System.Collections.Specialized; using System.Configuration; using System.Globalization; using System.IO; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Security; using System.Text; using System.Xml; using Microsoft.Win32; static internal class StringUtil { #if UNUSED_CODE /* * Determines if two strings are equal. */ internal static bool Equals(string s1, string s2) { return String.Equals(s1, s2, StringComparison.Ordinal); } #endif /* * Determines if two strings are equal. Treats null and String.Empty as equivalent. */ internal static bool EqualsNE(string s1, string s2) { if (s1 == null) { s1 = String.Empty; } if (s2 == null) { s2 = String.Empty; } return String.Equals(s1, s2, StringComparison.Ordinal); } /* * Determines if two strings are equal, ignoring case. */ internal static bool EqualsIgnoreCase(string s1, string s2) { return String.Equals(s1, s2, StringComparison.OrdinalIgnoreCase); } #if UNUSED_CODE /* * Determines if two strings are equal, ignoring case. Treats null and String.Empty as equivalent. */ internal static bool EqualsIgnoreCaseNE(string s1, string s2) { if (s1 == null) { s1 = String.Empty; } if (s2 == null) { s2 = String.Empty; } return String.Equals(s1, s2, StringComparison.OrdinalIgnoreCase); } #endif /* * Determines if the first string starts with the second string, ignoring case. */ internal static bool StartsWith(string s1, string s2) { if (s2 == null) { return false; } return 0 == String.Compare(s1, 0, s2, 0, s2.Length, StringComparison.Ordinal); } /* * Determines if the first string starts with the second string, ignoring case. */ internal static bool StartsWithIgnoreCase(string s1, string s2) { if (s2 == null) { return false; } return 0 == String.Compare(s1, 0, s2, 0, s2.Length, StringComparison.OrdinalIgnoreCase); } internal static string[] ObjectArrayToStringArray(object[] objectArray) { String[] stringKeys = new String[objectArray.Length]; objectArray.CopyTo(stringKeys, 0); return stringKeys; } } } // 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
- ParallelRangeManager.cs
- GroupAggregateExpr.cs
- DbConnectionPool.cs
- Debugger.cs
- AsymmetricAlgorithm.cs
- InputReferenceExpression.cs
- ConfigurationUtility.cs
- ZoomPercentageConverter.cs
- DirectionalLight.cs
- DictionaryEntry.cs
- PageFunction.cs
- ProcessModelInfo.cs
- ListBindingHelper.cs
- BitmapEffectDrawing.cs
- SafeTokenHandle.cs
- ByteConverter.cs
- Validator.cs
- ToolStripScrollButton.cs
- ClientScriptManagerWrapper.cs
- Rotation3D.cs
- OdbcEnvironment.cs
- WindowsScroll.cs
- WebPartsPersonalization.cs
- LineMetrics.cs
- CellConstantDomain.cs
- WebContext.cs
- ColorDialog.cs
- sitestring.cs
- DnsEndpointIdentity.cs
- remotingproxy.cs
- OptimalBreakSession.cs
- StreamGeometry.cs
- Int32EqualityComparer.cs
- UriWriter.cs
- IWorkflowDebuggerService.cs
- BitStack.cs
- FirstQueryOperator.cs
- GroupQuery.cs
- CallbackHandler.cs
- ContainerControl.cs
- LinqDataSourceDisposeEventArgs.cs
- FixedSOMTable.cs
- XPathCompileException.cs
- Span.cs
- ArgumentNullException.cs
- Model3D.cs
- SpanIndex.cs
- DigestTraceRecordHelper.cs
- ObjectManager.cs
- LowerCaseStringConverter.cs
- TextDecoration.cs
- OdbcCommandBuilder.cs
- SchemaCompiler.cs
- Task.cs
- TreeNodeStyleCollection.cs
- RewritingProcessor.cs
- FreezableCollection.cs
- UpDownBase.cs
- HatchBrush.cs
- LiteralLink.cs
- Throw.cs
- SessionIDManager.cs
- DocumentPaginator.cs
- ConfigurationManagerInternalFactory.cs
- XamlVector3DCollectionSerializer.cs
- FocusTracker.cs
- ValidationErrorEventArgs.cs
- DataMemberConverter.cs
- MarshalDirectiveException.cs
- XmlText.cs
- ExtensionQuery.cs
- XmlValidatingReader.cs
- BinaryQueryOperator.cs
- MetaType.cs
- WSFederationHttpBindingElement.cs
- PointValueSerializer.cs
- SuppressIldasmAttribute.cs
- TypeLibConverter.cs
- ToolboxComponentsCreatingEventArgs.cs
- DataGridBoolColumn.cs
- SvcMapFileLoader.cs
- SHA384CryptoServiceProvider.cs
- ScrollEventArgs.cs
- Accessors.cs
- DataRelationPropertyDescriptor.cs
- OciHandle.cs
- CustomAssemblyResolver.cs
- Selection.cs
- EventToken.cs
- ToolStrip.cs
- MailBnfHelper.cs
- BitmapInitialize.cs
- RemotingService.cs
- Size3DValueSerializer.cs
- MetadataCollection.cs
- CodeParameterDeclarationExpression.cs
- IsolatedStorageFilePermission.cs
- IssuedTokenServiceElement.cs
- WindowsGraphicsCacheManager.cs
- OrderToken.cs