81 references to IsDigit
mscorlib (4)
system\diagnostics\eventing\eventsource.cs (1)
6819while (i < eventMessage.Length && Char.IsDigit(eventMessage[i]))
system\enum.cs (1)
395if (Char.IsDigit(value[0]) || value[0] == '-' || value[0] == '+')
system\io\isolatedstorage\isolatedstorage.cs (1)
325if (!Char.IsLetter(s[i]) && !Char.IsDigit(s[i]))
system\runtime\remoting\remotingconfigparser.cs (1)
1819if (!Char.IsDigit(lastChar))
PresentationBuildTasks (2)
Framework\System\Windows\Markup\XamlReaderHelper.cs (1)
2556else if (Char.IsDigit(i))
Framework\System\Windows\Markup\XamlTypeMapper.cs (1)
827else if (Char.IsDigit(attribValue[i]))
PresentationFramework (4)
src\Framework\System\Windows\Controls\DefinitionBase.cs (1)
565bool isDigit = Char.IsDigit(id[i]);
src\Framework\System\Windows\Documents\DocumentSequence.cs (1)
182if (Char.IsDigit(elementID[0]))
src\Framework\System\Windows\Documents\FixedDocument.cs (1)
225if (Char.IsDigit(elementID[0]))
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (1)
827else if (Char.IsDigit(attribValue[i]))
System (12)
compmod\system\componentmodel\MaskedTextProvider.cs (4)
1497return char.IsLetter(c) || char.IsDigit(c); 2383if (!Char.IsDigit(input) && (input != '-') && (input != '+') && input != spaceChar) 2391if (!Char.IsDigit(input)) 2399if (!Char.IsDigit(input) && input != spaceChar)
net\System\Net\_Connection.cs (2)
1725if (Char.IsDigit((char)statusLine[bytesParsed])) { 2684while(i < server.Length && Char.IsDigit(server[i])) {
net\System\Net\_FtpControlStream.cs (3)
1186if(!(Char.IsDigit(responseString[0]) && Char.IsDigit(responseString[1]) && Char.IsDigit(responseString[2]) && (responseString[3] == ' ' || responseString[3] == '-'))) {
net\System\Net\SocketPermission.cs (1)
837else if (!Char.IsDigit(hostname[i])) { // Not a digit?
security\system\security\cryptography\x509\x509utils.cs (1)
469if (Char.IsDigit(keyValue[i]))
services\monitoring\system\diagnosticts\EventLog.cs (1)
1247while (i + 1 < formatString.Length && Char.IsDigit(formatString[i + 1])) {
System.ComponentModel.DataAnnotations (3)
DataAnnotations\PhoneAttribute.cs (3)
41if (Char.IsDigit(c)) { 53if (!(Char.IsDigit(c) 128if (!Char.IsDigit(c)) {
System.Configuration (1)
System\Configuration\GenericEnumConverter.cs (1)
51(Char.IsDigit(value[0]) ||
System.Data (2)
fx\src\data\System\Data\OleDb\OLEDB_Util.cs (1)
638if ((0 < builder.Length) && Char.IsDigit(builder[0])) {
fx\src\data\System\Data\SqlClient\SqlCommand.cs (1)
2638if (Char.IsDigit(sproc[sproc.Length-1])) { // If last char is a digit, parse.
System.Data.Services (9)
System\Data\Services\Parsing\ExpressionLexer.cs (7)
139if (hasNext && Char.IsDigit(this.text[this.textPos + 1])) 224if (Char.IsDigit(this.ch)) 474Debug.Assert(Char.IsDigit(this.ch), "Char.IsDigit(this.ch)"); 490while (Char.IsDigit(this.ch)) 505while (Char.IsDigit(this.ch)); 522while (Char.IsDigit(this.ch)); 573if (!Char.IsDigit(this.ch))
System\Data\Services\Serializers\JsonReader.cs (2)
99else if (Char.IsDigit(ch) || (ch == '-') || (ch == '.')) 332if (Char.IsDigit(ch) || (ch == '.') || (ch == 'E') || (ch == 'e') || (ch == '-') || (ch == '+'))
System.Data.Services.Client (1)
parent\Server\System\Data\Services\Parsing\WebConvert.cs (1)
806if (!Char.IsDigit(c))
System.Data.Services.Design (1)
System\Data\EntityModel\DataServiceBuildProvider.cs (1)
246if (i == 0 && Char.IsDigit(typeName[0]))
System.Runtime.Remoting (1)
metadata\wsdlparser.cs (1)
6418if (Char.IsDigit(value[i]))
System.ServiceModel (2)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
668while (dateTimeString.Length > i && char.IsDigit(dateTimeString[i]))
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
279if (char.IsDigit(dateTimeStringBuilder[1]))
System.Web (9)
Compilation\MultiTargetingUtil.cs (1)
463if (string.IsNullOrEmpty(version) || !char.IsDigit(version[0])) {
Configuration\BrowserDefinition.cs (1)
55if(Char.IsDigit(s[0])) {
Configuration\IISMapPath.cs (1)
52if (!Char.IsDigit(siteName[i])) {
Management\EventlogProvider.cs (2)
273if (s[i] == '%' && Char.IsDigit(s[i+1])) { 283if (s[i] == '%' && Char.IsDigit(s[i+1])) {
UI\DataBinder.cs (1)
237if (Char.IsDigit(index[0])) {
UI\Util.cs (2)
965if (Char.IsDigit(value[0]) || value[0] == '-' || ((!allowMultiple) && (value.IndexOf(',') >= 0))) 1055if (i == 0 && Char.IsDigit(s[0]))
UI\WebControls\TreeView.cs (1)
2321if (!Char.IsDigit(s[i])) {
System.Web.DataVisualization (3)
Common\DataManager\DataPoint.cs (1)
188 Char.IsDigit(sortBy[1]))
Common\DataManager\DataSeries.cs (1)
1221 char.IsDigit(result[keyEndIndex + 1]))
WebForm\ChartWebControl.cs (1)
781 if(!Char.IsDigit(c))
System.Web.Extensions (6)
Compilation\WCFBuildProvider.cs (1)
506if (i == 0 && Char.IsDigit(typeName[0]))
UI\WebControls\Dynamic.cs (5)
1959if (Char.IsDigit(ch)) { 1963} while (Char.IsDigit(ch)); 1970} while (Char.IsDigit(ch)); 1979} while (Char.IsDigit(ch)); 2036if (!Char.IsDigit(ch)) throw ParseError(textPos, AtlasWeb.ExpressionParser_DigitExpected);
System.Web.Mobile (1)
UI\MobileControls\Adapters\UpWmlMobileTextWriter.cs (1)
117if (Char.IsDigit(c))
System.Windows.Forms (6)
winforms\Managed\System\WinForms\NumericUpDown.cs (1)
531if (Char.IsDigit(e.KeyChar)) {
winforms\Managed\System\WinForms\SendKeys.cs (2)
451if (Char.IsDigit(keys[j])) { 453while (j < keysLen && Char.IsDigit(keys[j])) {
winforms\Managed\System\WinForms\TableLayoutSettingsTypeConverter.cs (3)
208while (!char.IsDigit(styleString[nextIndex])) { 213while ((nextIndex < styleString.Length) && (char.IsDigit(styleString[nextIndex]))) { 221if (char.IsDigit(styleString[nextIndex])) {
System.Windows.Forms.DataVisualization (2)
Common\DataManager\DataPoint.cs (1)
188 Char.IsDigit(sortBy[1]))
Common\DataManager\DataSeries.cs (1)
1221 char.IsDigit(result[keyEndIndex + 1]))
System.Workflow.Activities (8)
Rules\Parser\Scanner.cs (8)
201if (char.IsDigit(ch)) 301if (char.IsDigit(PeekNextChar())) 545while (char.IsDigit(ch)) 684while (char.IsDigit(ch)) 732if (!char.IsDigit(ch)) 742} while (char.IsDigit(ch)); 883if (char.IsDigit(ch)) 943else if (char.IsDigit(ch))
UIAutomationClientsideProviders (1)
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
2491for (pos = cChars - 1; pos > 0 && cChars - pos <= 2 && Char.IsDigit (menuText [pos]); pos--)
WindowsBase (3)
Base\MS\Internal\IO\Packaging\PieceNameHelper.cs (2)
292if (!char.IsDigit(path[position - 1])) 302} while (char.IsDigit(path[--position]));
Base\System\Windows\Input\KeyConverter.cs (1)
156if (Char.IsDigit(keyToken[0]) && (keyToken[0] >= '0' && keyToken[0] <= '9'))