11 references to ToCharArray
PresentationCore (1)
Core\CSharp\System\Windows\DataObject.cs (1)
2247chars = str.ToCharArray(0, str.Length);
PresentationFramework (2)
src\Framework\System\Windows\Documents\FlowPosition.cs (2)
236Array.Copy(text.ToCharArray(flow._offset, maxLength), 0, chars, startIndex, maxLength); 240Array.Copy(text.ToCharArray(flow._offset - maxLength, maxLength), 0, chars, startIndex, maxLength);
System.Data (7)
fx\src\data\System\Data\Odbc\OdbcUtils.cs (1)
177rgChars = ((string)value).ToCharArray(valueOffset, length);
fx\src\data\System\Data\OleDb\ColumnBinding.cs (1)
1068char[] chars = value.ToCharArray(ValueBindingOffset, charCount);
fx\src\data\System\Data\SqlClient\TdsParser.cs (3)
6682charData = s.ToCharArray(offset, numChars); 6699charData = s.ToCharArray(offset, numChars); 6732char[] charData = value.ToCharArray(charOffset, numChars);
fx\src\data\System\Data\SqlClient\TdsValueSetter.cs (2)
323char[] chars = value.ToCharArray(offset, length); 343bytes = _stateObj.Parser._defaultEncoding.GetBytes(value.ToCharArray(offset, length));
System.Windows.Forms (1)
winforms\Managed\System\WinForms\DataObject.cs (1)
1095char[] chars = str.ToCharArray(0, str.Length);