Implemented interface member:
method
ToString
System.IConvertible.ToString(System.IFormatProvider)
29 references to ToString
mscorlib (1)
system\convert.cs (1)
1828return value.ToString(provider);
PresentationBuildTasks (1)
BuildTasks\Microsoft\Build\Tasks\Windows\UidManager.cs (1)
909string prefix = UidNamespaceAbbreviation.ToString(TypeConverterHelper.InvariantEnglishUS);
System (1)
regex\system\text\regularexpressions\RegexFCD.cs (1)
95return new RegexPrefix(curNode._ch.ToString(CultureInfo.InvariantCulture), 0 != (curNode._options & RegexOptions.IgnoreCase));
System.Data (2)
fx\src\data\System\Data\Filter\NameNode.cs (2)
153Debug.Assert(text[checked((int)pos-1)] == '`', "Invalid identifyer bracketing, pos = " + pos.ToString(CultureInfo.InvariantCulture) + ", end = " + text[checked((int)pos-1)].ToString(CultureInfo.InvariantCulture)); 160Debug.Assert(text[checked((int)pos-1)] == ']', "Invalid identifyer bracketing of name " + new string(text, start, pos-start) + " pos = " + pos.ToString(CultureInfo.InvariantCulture) + ", end = " + text[checked((int)pos-1)].ToString(CultureInfo.InvariantCulture));
System.Data.Entity.Design (2)
System\Data\EntityModel\Emitters\Utils.cs (2)
205return text[0].ToString(System.Globalization.CultureInfo.InvariantCulture).ToLowerInvariant(); 207return text[0].ToString(System.Globalization.CultureInfo.InvariantCulture).ToLowerInvariant()+text.Substring(1);
System.Data.Services.Design (4)
System\Data\EntityModel\Emitters\Utils.cs (4)
191return text[0].ToString(System.Globalization.CultureInfo.InvariantCulture).ToLowerInvariant(); 193return text[0].ToString(System.Globalization.CultureInfo.InvariantCulture).ToLowerInvariant() + text.Substring(1); 207return text[0].ToString(System.Globalization.CultureInfo.InvariantCulture).ToUpperInvariant(); 209return text[0].ToString(System.Globalization.CultureInfo.InvariantCulture).ToUpperInvariant() + text.Substring(1);
System.Web (12)
Configuration\AuthorizationRule.cs (2)
384throw new ConfigurationErrorsException(SR.GetString(SR.Auth_rule_names_cant_contain_char, User[foundIndex].ToString(CultureInfo.InvariantCulture))); 404throw new ConfigurationErrorsException(SR.GetString(SR.Auth_rule_names_cant_contain_char, Role[foundIndex].ToString(CultureInfo.InvariantCulture)));
UI\HTMLTextWriter.cs (2)
620endTag = EndTagLeftChars + nameLCase + TagRightChar.ToString(CultureInfo.InvariantCulture); 1084endTag = EndTagLeftChars + _tagName + TagRightChar.ToString(CultureInfo.InvariantCulture);
UI\WebControls\Style.cs (1)
655return String.Join(delimiter.ToString(CultureInfo.InvariantCulture), array);
UI\WebParts\ConnectionsZone.cs (6)
1550connectVerb.EventArgument = String.Join(ID_SEPARATOR.ToString(CultureInfo.InvariantCulture), 1643connectVerb.EventArgument = String.Join(ID_SEPARATOR.ToString(CultureInfo.InvariantCulture), 1841transformerEventArgs = configureEventArgument + ID_SEPARATOR.ToString(CultureInfo.InvariantCulture) + connection.ID; 1857String.Join(ID_SEPARATOR.ToString(CultureInfo.InvariantCulture), 1881transformerEventArgs = configureEventArgument + ID_SEPARATOR.ToString(CultureInfo.InvariantCulture) + connection.ID; 1897String.Join(ID_SEPARATOR.ToString(CultureInfo.InvariantCulture),
XmlSiteMapProvider.cs (1)
757roles[foundIndex].ToString(CultureInfo.InvariantCulture)), xmlNode);
System.Workflow.Activities (2)
Rules\ArithmeticLiteral.cs (2)
1498return (v + m_value.ToString(CultureInfo.CurrentCulture)); 3356return (v.ToString(CultureInfo.CurrentCulture) + m_value);
System.Xml (4)
System\Xml\Serialization\CodeIdentifier.cs (2)
42return char.ToUpper(identifier[0], CultureInfo.InvariantCulture).ToString(CultureInfo.InvariantCulture) + identifier.Substring(1); 56return char.ToLower(identifier[0], CultureInfo.InvariantCulture).ToString(CultureInfo.InvariantCulture) + identifier.Substring(1);
System\Xml\XmlConvert.cs (1)
637return value.ToString(null);
System\Xml\XmlException.cs (1)
266aStringList[0] = invChar.ToString(CultureInfo.InvariantCulture);