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