Implemented interface member:
method
Clone
System.ICloneable.Clone()
252 references to Clone
mscorlib (76)
microsoft\win32\registrykey.cs (1)
1504string[] dataStrings = (string[])(((string[])value).Clone());
system\appdomain.cs (1)
3602args=(string[])setup.AppDomainInitializerArguments.Clone();
system\AppDomainSetup.cs (2)
287_AptcaVisibleAssemblies = (string[])value.Clone(); 542return (byte[]) _ConfigurationBytes.Clone();
system\defaultbinder.cs (6)
46MethodBase[] candidates = (MethodBase[]) match.Clone(); 302state = new BinderState((int[])paramOrder[0].Clone(), args.Length, paramArrayTypes[0] != null); 382state = new BinderState((int[])paramOrder[currentMin].Clone(), args.Length, paramArrayTypes[currentMin] != null); 454FieldInfo[] candidates = (FieldInfo[]) match.Clone(); 536MethodBase[] candidates = (MethodBase[]) match.Clone(); 613PropertyInfo[] candidates = (PropertyInfo[]) match.Clone();
System\Diagnostics\Eventing\TraceLogging\TraceLoggingEventTypes.cs (1)
255return (TraceLoggingTypeInfo[])typeInfos.Clone(); ;
system\globalization\datetimeformatinfo.cs (9)
1394return ((String[])internalGetAbbreviatedDayOfWeekNames().Clone()); 1422return ((String[])internalGetSuperShortDayNames().Clone()); 1447return ((String[])internalGetDayOfWeekNames().Clone()); 1472return ((String[])internalGetAbbreviatedMonthNames().Clone()); 1498return ((String[])internalGetMonthNames().Clone()); 1816return (string[])patterns.Clone(); 1835newPatterns = (string[])patterns.Clone(); 2113return ((String[])internalGetGenitiveMonthNames(true).Clone()); 2141return ((String[])internalGetGenitiveMonthNames(false).Clone());
system\globalization\gregoriancalendarhelper.cs (1)
513return ((int[])m_eras.Clone());
system\globalization\numberformatinfo.cs (7)
382return ((int[])currencyGroupSizes.Clone()); 392Int32[] inputSizes = (Int32[])value.Clone(); 403return ((int[])numberGroupSizes.Clone()); 413Int32[] inputSizes = (Int32[])value.Clone(); 422return ((int[])percentGroupSizes.Clone()); 431Int32[] inputSizes = (Int32[])value.Clone(); 771get { return (String[])nativeDigits.Clone(); }
system\globalization\sortkey.cs (1)
119return (byte[])(m_KeyData.Clone());
system\io\path.cs (2)
286return (char[]) RealInvalidPathChars.Clone(); 291return (char[]) InvalidFileNameChars.Clone();
system\reflection\emit\dynamicilgenerator.cs (3)
1065m_code = (code != null) ? (byte[])code.Clone() : EmptyArray<Byte>.Value; 1092m_exceptions = (exceptions != null) ? (byte[])exceptions.Clone() : EmptyArray<Byte>.Value; 1117m_localSignature = (localSignature != null) ? (byte[])localSignature.Clone() : EmptyArray<Byte>.Value;
system\reflection\emit\methodbuilder.cs (3)
984byte[] newIL = (byte[])il.Clone(); 988newLocalSignature = (byte[])localSignature.Clone(); 1030return (T[])array.Clone();
system\runtime\remoting\messagesmuggler.cs (1)
119return array.Clone();
system\runtime\serialization\objectmanager.cs (1)
783arrayIndex = (int[])arrayIndex.Clone();
system\security\claims\Claim.cs (1)
289m_userSerializationData = other.m_userSerializationData.Clone() as byte[];
system\security\claims\ClaimsIdentity.cs (2)
346m_userSerializationData = claimsIdentity.m_userSerializationData.Clone() as byte[]; 400m_userSerializationData = other.m_userSerializationData.Clone() as byte[];
system\security\cryptography\asymmetricalgorithm.cs (1)
72get { return (KeySizes[]) LegalKeySizesValue.Clone(); }
system\security\cryptography\des.cs (2)
51return (byte[]) KeyValue.Clone(); 65KeyValue = (byte[]) value.Clone();
system\security\cryptography\hashalgorithm.cs (4)
41return (byte[]) HashValue.Clone(); 72byte[] Tmp = (byte[]) HashValue.Clone(); 86byte[] Tmp = (byte[]) HashValue.Clone(); 108byte[] Tmp = (byte[]) HashValue.Clone();
system\security\cryptography\hmac.cs (2)
84KeyValue = (byte[]) key.Clone(); 94get { return (byte[]) KeyValue.Clone(); }
system\security\cryptography\keyedhashalgorithm.cs (2)
36get { return (byte[]) KeyValue.Clone(); } 40KeyValue = (byte[]) value.Clone();
system\security\cryptography\mactripledes.cs (2)
68KeyValue = (byte[]) rgbKey.Clone(); 175get { return (byte[]) _Buffer.Clone(); }
system\security\cryptography\passwordderivebytes.cs (2)
119return (byte[]) _salt.Clone(); 127_salt = (byte[]) value.Clone();
system\security\cryptography\rfc2898derivebytes.cs (2)
136get { return (byte[]) m_salt.Clone(); } 143m_salt = (byte[]) value.Clone();
system\security\cryptography\rsaoaepkeyexchangeformatter.cs (2)
38return (byte[]) ParameterValue.Clone(); 43ParameterValue = (byte[]) value.Clone();
system\security\cryptography\symmetricalgorithm.cs (6)
121return (byte[]) IVValue.Clone(); 129IVValue = (byte[]) value.Clone(); 136return (byte[]) KeyValue.Clone(); 145KeyValue = (byte[]) value.Clone(); 151get { return (KeySizes[]) LegalBlockSizesValue.Clone(); } 155get { return (KeySizes[]) LegalKeySizesValue.Clone(); }
system\security\cryptography\tripledes.cs (2)
50return (byte[]) KeyValue.Clone(); 61KeyValue = (byte[]) value.Clone();
system\security\cryptography\x509certificates\x509certificate.cs (5)
263return (byte[]) m_serialNumber.Clone(); 277return (byte[]) m_publicKeyParameters.Clone(); 304return (byte[]) m_publicKeyValue.Clone(); 322return (byte[]) m_thumbprint.Clone(); 713return (byte[]) m_rawData.Clone();
system\timezoneinfo.cs (2)
328return (AdjustmentRule[])m_adjustmentRules.Clone(); 1125m_adjustmentRules = (AdjustmentRule[])adjustmentRules.Clone();
PresentationBuildTasks (2)
Framework\System\Windows\Markup\XamlTypeMapper.cs (2)
4658return (string[])_defaultAssemblies.Clone(); 4666return (NamespaceMapEntry[])_defaultNamespaceMapTable.Clone();
PresentationCore (25)
Core\CSharp\System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\CharAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\Int16AnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\Int64AnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\MatrixAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\QuaternionAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\RectAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\Rotation3DAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\SizeAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\StringAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
Core\CSharp\System\Windows\Media\Color.cs (1)
394return (float[])nativeColorValue.Clone();
Core\CSharp\System\Windows\Media\FormattedText.cs (1)
1348return (_maxTextWidths == null) ? null : (double [])_maxTextWidths.Clone();
Core\CSharp\System\Windows\Media\Imaging\BitmapMetadataBlob.cs (1)
51return (byte[]) _blob.Clone();
Core\CSharp\System\Windows\Media\PixelFormat.cs (1)
83return _mask != null ? new PartialList<byte>((byte[])_mask.Clone()) : null;
PresentationFramework (14)
src\Framework\Microsoft\Win32\FileDialog.cs (1)
1296return (string[])_fileNames.Clone();
src\Framework\MS\Internal\Annotations\Anchoring\DataIdProcessor.cs (1)
253return (XmlQualifiedName[])LocatorPartTypeNames.Clone();
src\Framework\MS\Internal\Annotations\Anchoring\FixedPageProcessor.cs (1)
265return (XmlQualifiedName[])LocatorPartTypeNames.Clone();
src\Framework\MS\Internal\Annotations\Anchoring\FixedTextSelectionProcessor.cs (1)
386return (XmlQualifiedName[])LocatorPartTypeNames.Clone();
src\Framework\MS\Internal\Annotations\Anchoring\TextSelectionProcessor.cs (1)
320return (XmlQualifiedName[])LocatorPartTypeNames.Clone();
src\Framework\MS\Internal\Annotations\Anchoring\TextViewSelectionProcessor.cs (1)
201return (XmlQualifiedName[])LocatorPartTypeNames.Clone();
src\Framework\MS\Internal\Annotations\Anchoring\TreeNodeSelectionProcessor.cs (1)
197return (XmlQualifiedName[])LocatorPartTypeNames.Clone();
src\Framework\MS\Internal\IO\Packaging\PackageFilter.cs (1)
622string[] path = (string[]) pathWithGaps.Clone();
src\Framework\System\Windows\Interop\DynamicScriptObject.cs (1)
394args = (object[])args.Clone();
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (4)
301XamlTypeMapper newMapper = new XamlTypeMapper(_assemblyNames.Clone() as string[]); 308newMapper._namespaceMaps = _namespaceMaps.Clone() as NamespaceMapEntry[]; 4658return (string[])_defaultAssemblies.Clone(); 4666return (NamespaceMapEntry[])_defaultNamespaceMapTable.Clone();
src\Framework\System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (1)
182_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.Clone();
System (11)
compmod\system\componentmodel\design\PropertyTabAttribute.cs (4)
133return (string[])tabClassNames.Clone(); 211this.tabClasses = (Type[])tabClasses.Clone(); 217this.tabClassNames = (string[])tabClassNames.Clone(); 230this.tabScopes = (PropertyTabScope[])tabScopes.Clone();
compmod\system\componentmodel\EventDescriptorCollection.cs (1)
95this.namedSort = (string[])namedSort.Clone();
compmod\system\componentmodel\PropertyDescriptorCollection.cs (2)
117this.namedSort = (string[])namedSort.Clone(); 593return (ICollection)properties.Clone();
net\System\Net\Sockets\Socket.cs (1)
9267m_SendPacketsElementsInternal = (SendPacketsElement[])m_SendPacketsElements.Clone();
net\System\Net\WebUtility.cs (1)
395? (byte[])encoded.Clone()
security\system\security\Authentication\ExtendedProtection\TokenBinding.cs (1)
28return (_rawTokenBindingId != null) ? (byte[])_rawTokenBindingId.Clone() : null;
security\system\security\cryptography\asnencodeddata.cs (1)
66m_rawData = (byte[]) value.Clone();
System.Activities (1)
System\Activities\Debugger\Symbol\WorkflowSymbol.cs (1)
31return (byte[]) this.checksum.Clone();
System.Core (19)
Microsoft\Scripting\Compiler\DelegateHelpers.Generated.cs (1)
84curTypeInfo.DelegateType = MakeNewDelegate((Type[])types.Clone());
System\Collections\Generic\HashSet.cs (2)
171m_buckets = (int[])source.m_buckets.Clone(); 172m_slots = (Slot[])source.m_slots.Clone();
System\Security\Cryptography\AesCryptoServiceProvider.cs (5)
99byte[] keyValue = (byte[])value.Clone(); 171byte[] keyCopy = (byte[])key.Clone(); 174ivCopy = (byte[])iv.Clone(); 237byte[] keyCopy = (byte[])key.Clone(); 240ivCopy = (byte[])iv.Clone();
System\Security\Cryptography\CngProperty.cs (2)
33m_value = value.Clone() as byte[]; 73value = m_value.Clone() as byte[];
System\Security\Cryptography\ECDiffieHellmanCng.cs (7)
374byte[] secretAppend = SecretAppend == null ? null : SecretAppend.Clone() as byte[]; 375byte[] secretPrepend = SecretPrepend == null ? null : SecretPrepend.Clone() as byte[]; 384byte[] hmacKey = HmacKey == null ? null : HmacKey.Clone() as byte[]; 385byte[] secretAppend = SecretAppend == null ? null : SecretAppend.Clone() as byte[]; 386byte[] secretPrepend = SecretPrepend == null ? null : SecretPrepend.Clone() as byte[]; 398byte[] label = Label == null ? null : Label.Clone() as byte[]; 399byte[] seed = Seed == null ? null : Seed.Clone() as byte[];
System\Security\Cryptography\ECDiffieHellmanPublicKey.cs (2)
31m_keyBlob = keyBlob.Clone() as byte[]; 44return m_keyBlob.Clone() as byte[];
System.Data (5)
fx\src\data\System\Data\Common\NameValuePermission.cs (1)
50NameValuePermission[] tree = (_tree.Clone() as NameValuePermission[]);
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (1)
71_initialState[i] = (byte[])recoveryData._initialState[i].Clone();
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (1)
528newBitmap._nullBitmap = _nullBitmap == null ? null : (byte[])_nullBitmap.Clone();
fx\src\data\System\Data\SQLTypes\SQLFileStream.cs (2)
170return (byte[]) m_txn.Clone(); 178m_txn = (byte[]) value.Clone();
System.Data.Entity (6)
System\Data\Common\CommandTrees\ValueExpressions.cs (2)
46this._value = ((byte[])value).Clone(); 74return ((byte[])_value).Clone();
System\Data\Objects\DataClasses\StructuralObject.cs (2)
280return (byte[])currentValue.Clone(); 311return (byte[])value.Clone();
System\Data\Spatial\DefaultSpatialServices.cs (2)
32this.wkb = (binaryValue == null ? null : (byte[])binaryValue.Clone()); 38internal byte[] CloneBinary() { return (this.wkb == null ? null : (byte[])this.wkb.Clone()); }
System.Data.Entity.Design (2)
System\Data\Entity\Design\SSDLGenerator\FunctionDetailsReader.cs (2)
194return new MementoV1((object[])_currentRow.Clone()); 360return new MementoV3((object[])_currentRow.Clone());
System.Data.Services (1)
System\Data\Services\Parsing\RequestQueryParser.cs (1)
1861Expression[] arguments = this.nullPropagationRequired ? originalArguments : (Expression[])originalArguments.Clone();
System.Data.SqlXml (1)
System\Xml\Xsl\QIL\QilList.cs (1)
75n.members = (QilNode[]) this.members.Clone();
System.Drawing (3)
commonui\System\Drawing\Design\ToolboxComponentsCreatedEventArgs.cs (1)
40return (IComponent[])comps.Clone();
commonui\System\Drawing\Design\ToolboxItem.cs (2)
111return (AssemblyName[]) names.Clone(); 116Properties["DependentAssemblies"] = value.Clone();
System.IdentityModel (1)
System\IdentityModel\Tokens\SecurityKeyIdentifierClause.cs (1)
60return (this.derivationNonce != null) ? (byte[])this.derivationNonce.Clone() : null;
System.IO.Log (1)
System\IO\Log\LogReserveAndAppendState.cs (1)
396this.alignedReservations = (long[])this.reservations.Clone();
System.Numerics (2)
System\Numerics\BigInteger.cs (2)
300dwords = (uint[])_bits.Clone(); 349dwords = (uint[])_bits.Clone();
System.Security (5)
system\security\cryptography\pkcs\pkcsmisc.cs (1)
365parameters = (byte[]) rc2Parameters.rgbIV.Clone();
system\security\cryptography\pkcs\signerinfo.cs (1)
77m_encodedSignerInfo = (byte[]) encodedSignerInfo.Clone();
system\security\cryptography\xml\canonicalxml.cs (1)
113byte[] res = (byte[]) hash.Hash.Clone();
system\security\cryptography\xml\cipherdata.cs (1)
66m_cipherValue = (byte[]) value.Clone();
system\security\cryptography\xml\exccanonicalxml.cs (1)
69byte[] res = (byte[]) hash.Hash.Clone();
System.ServiceModel (4)
System\ServiceModel\EnvelopeVersion.cs (1)
149return (string[])this.ultimateDestinationActorValues.Clone();
System\ServiceModel\MsmqIntegration\MsmqIntegrationBindingElement.cs (3)
28this.targetSerializationTypes = other.targetSerializationTypes.Clone() as Type[]; 65return this.targetSerializationTypes.Clone() as Type[]; 73this.targetSerializationTypes = value.Clone() as Type[];
System.Web (35)
Cache\CacheDependency.cs (3)
320filenames = (string []) filenamesArg.Clone(); 327cachekeys = (string []) cachekeysArg.Clone(); 967dependencies = (CacheDependency []) dependencies.Clone();
Configuration\MachineKeySection.cs (2)
107internal byte[] ValidationKeyInternal { get { RuntimeDataInitialize(); return (byte[])_ValidationKey.Clone(); } } 108internal byte[] DecryptionKeyInternal { get { RuntimeDataInitialize(); return (byte[])_DecryptionKey.Clone(); } }
Hosting\TlsTokenBindingInfo.cs (2)
21? (byte[])_providedTokenBindingId.Clone() 27? (byte[])_referredTokenBindingId.Clone()
HttpCachePolicy.cs (5)
364return (_varyByContentEncodings == null) ? null : (string[]) _varyByContentEncodings.Clone() ;}} 366return (_varyByHeaderValues == null) ? null : (string[]) _varyByHeaderValues.Clone() ;}} 369return (_varyByParamValues == null) ? null : (string[]) _varyByParamValues.Clone() ;}} 379return (_privateFields == null) ? null : (string[]) _privateFields.Clone() ;}} 382return (_noCacheFields == null) ? null : (string[]) _noCacheFields.Clone() ;}}
HttpResponse.cs (2)
993_userAddedDependencies = (CacheDependency[]) dependencies.Clone(); 3602itemsLocal = (string[]) items.Clone();
UI\WebControls\DetailsView.cs (2)
540return(string[])((string[])o).Clone(); 547_dataKeyNames = (string[])value.Clone();
UI\WebControls\FormView.cs (2)
364return (string[])((string[])o).Clone(); 371_dataKeyNames = (string[])value.Clone();
UI\WebControls\GridView.cs (4)
610return (string[])((string[])o).Clone(); 617_dataKeyNames = (string[])value.Clone(); 1097return (string[])((string[])o).Clone(); 1104_clientIDRowSuffix = (string[])value.Clone();
UI\WebControls\HyperLinkField.cs (2)
48return(string[])((string[])o).Clone(); 57ViewState["DataNavigateUrlFields"] = (string[])value.Clone();
UI\WebControls\RoleGroup.cs (2)
54return (string[]) _roles.Clone(); 63_roles = (string[]) value.Clone();
UI\WebControls\TableCell.cs (2)
80return (x != null) ? (string[])((string[])x).Clone() : new string[0]; 84ViewState["AssociatedHeaderCellID"] = (string[])value.Clone();
UI\WebControls\TableHeaderCell.cs (2)
93return (x != null) ? (string[])((string[])x).Clone() : new string[0]; 97ViewState["CategoryText"] = (string[])value.Clone();
UI\WebParts\RowToParametersTransformer.cs (4)
34return (_consumerFieldNames != null) ? (string[])_consumerFieldNames.Clone() : new string[0]; 37_consumerFieldNames = (value != null) ? (string[])value.Clone() : null; 52return (_providerFieldNames != null) ? (string[])_providerFieldNames.Clone() : new string[0]; 55_providerFieldNames = (value != null) ? (string[])value.Clone() : null;
Util\HttpEncoder.cs (1)
613? (byte[])encoded.Clone()
System.Web.DataVisualization (1)
Common\Borders3D\EmbedBorder.cs (1)
690 oldCorners = (float[])cornerRadius.Clone();
System.Web.Extensions (11)
Compilation\WCFModel\VSWCFServiceContractGenerator.cs (1)
1412extensionFileContents.Add(extensionFile.Name, (byte[])extensionFile.ContentBuffer.Clone());
Configuration\ScriptingProfileServiceSection.cs (4)
63return propertiesForReading == null ? null : (string[]) propertiesForReading.Clone(); 67value = (string[]) value.Clone(); 80return propertiesForWriting == null ? null : (string[]) propertiesForWriting.Clone(); 84value = (string[]) value.Clone();
UI\ProfileServiceManager.cs (2)
255return (string[]) _loadProperties.Clone(); 259value = (string[])value.Clone();
UI\WebControls\ListView.cs (4)
336return (string[])((string[])o).Clone(); 343_dataKeyNames = (string[])value.Clone(); 748return (string[])((string[])o).Clone(); 755_clientIDRowSuffix = (string[])value.Clone();
System.Windows.Forms (10)
winforms\Managed\System\WinForms\ColorDialog.cs (1)
143get { return(int[]) customColors.Clone();}
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2Enum.cs (2)
92return(object[])this.values.Clone(); 102return(string[])this.names.Clone();
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (1)
697return new Com2PropertyDescriptor(this.dispid, this.Name, (Attribute[])this.baseAttrs.Clone(), this.readOnly, this.propertyType, this.typeData, this.hrHidden);
winforms\Managed\System\WinForms\FileDialog.cs (1)
313return(string[])fileNames.Clone();
winforms\Managed\System\WinForms\PropertyGrid.cs (2)
1245currentObjects = (object[])value.Clone(); 1395return (object[])currentObjects.Clone();
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntryCollection.cs (1)
45entries = (GridEntry[])value.Clone();
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (2)
231mergedList.Add(matchArray.Clone()); 315mergedEntries.Add(mergeArray.Clone());
System.Windows.Forms.DataVisualization (1)
Common\Borders3D\EmbedBorder.cs (1)
690 oldCorners = (float[])cornerRadius.Clone();
System.Workflow.ComponentModel (4)
AuthoringOM\Compiler\TypeSystem\AttributeInfo.cs (2)
55this.argumentNames = (string[])argumentNames.Clone(); 56this.argumentValues = (object[])argumentValues.Clone();
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (2)
1248this.parameters = (Type[])parameters.Clone(); 1280return (Type[])parameters.Clone();
System.WorkflowServices (2)
System\Workflow\Activities\ContractType.cs (2)
758this.parameters = (Type[])parameters.Clone(); 779return (Type[])parameters.Clone();
System.Xml (3)
System\Xml\HWStack.cs (1)
101return new HWStack((object[]) this.stack.Clone(), this.growthRate, this.used, this.size);
System\Xml\Schema\BitSet.cs (1)
172newset.bits = (uint[])bits.Clone();
System\Xml\XPath\Internal\XPathMultyIterator.cs (1)
125this.arr = (ResetableIterator[]) it.arr.Clone();
UIAutomationClient (6)
MS\Internal\Automation\EventListener.cs (1)
43_properties = (AutomationProperty[])properties.Clone();
MS\Internal\Automation\WinEventWrap.cs (1)
46_eventIds = (int [])eventIds.Clone();
System\Windows\Automation\AndCondition.cs (2)
56_conditions = (Condition [ ]) conditions.Clone(); 82return (Condition []) _conditions.Clone();
System\Windows\Automation\OrCondition.cs (2)
56_conditions = (Condition[])conditions.Clone(); 83return (Condition []) _conditions.Clone();