25 references to MinValue
mscorlib (3)
system\runtime\remoting\soapinteroptypes.cs (2)
93index = value.IndexOf(Char.MinValue); 98stringBuffer.Replace(Char.MinValue.ToString(), "�", index, stringBuffer.Length - index);
system\runtime\serialization\formatters\binary\binaryutilclasses.cs (1)
905charA[index] = Char.MinValue;
PresentationFramework (1)
src\Framework\MS\Internal\Data\PathParser.cs (1)
397const char NullChar = Char.MinValue;
System.Data (11)
fx\src\data\System\Data\Common\CharStorage.cs (1)
45Char max = Char.MinValue;
fx\src\data\System\Data\SqlClient\SqlSequentialTextReader.cs (6)
58Debug.Assert(_peekedChar == -1 || ((_peekedChar >= char.MinValue) && (_peekedChar <= char.MaxValue)), string.Format("Bad peeked character: {0}", _peekedChar)); 92Debug.Assert(readChar == -1 || ((readChar >= char.MinValue) && (readChar <= char.MaxValue)), string.Format("Bad read character: {0}", readChar)); 114Debug.Assert((_peekedChar >= char.MinValue) && (_peekedChar <= char.MaxValue), string.Format("Bad peeked character: {0}", _peekedChar)); 157if (peekedChar >= char.MinValue) 159Debug.Assert((_peekedChar >= char.MinValue) && (_peekedChar <= char.MaxValue), string.Format("Bad peeked character: {0}", _peekedChar)); 443get { return (_peekedChar >= char.MinValue); }
fx\src\data\System\Data\SqlClient\SqlSequentialTextReaderSmi.cs (4)
39Debug.Assert(_peekedChar == -1 || ((_peekedChar >= char.MinValue) && (_peekedChar <= char.MaxValue)), string.Format("Bad peeked character: {0}", _peekedChar)); 70Debug.Assert(readChar == -1 || ((readChar >= char.MinValue) && (readChar <= char.MaxValue)), string.Format("Bad read character: {0}", readChar)); 86Debug.Assert((_peekedChar >= char.MinValue) && (_peekedChar <= char.MaxValue), string.Format("Bad peeked character: {0}", _peekedChar)); 130get { return (_peekedChar >= char.MinValue); }
System.Runtime.Serialization (1)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
370if (value < char.MinValue || value > char.MaxValue)
System.ServiceModel (8)
System\ServiceModel\Dispatcher\QueryPrefixOp.cs (2)
49: this(char.MinValue) 333this.segmentLength = firstChar == char.MinValue ? 0 : 1 + segmentTail.Length;
System\ServiceModel\Dispatcher\XPathLexer.cs (6)
485this.ch = char.MinValue; 528this.ch = char.MinValue; 563return char.MinValue; 752ThrowError(QueryCompileError.InvalidVariable, this.ch == char.MinValue ? string.Empty : CurrentSubstring()); 813ThrowError(QueryCompileError.InvalidNCName, this.ch == char.MinValue ? "" : CurrentSubstring()); 952if (this.ch == char.MinValue)
System.Workflow.ComponentModel (1)
AuthoringOM\Bind.cs (1)
1771private const char NullChar = Char.MinValue;