GetMaxCharCount() public method

public GetMaxCharCount ( int byteCount ) : int
byteCount int
return int
Ejemplo n.º 1
0
 private void DoNegAOORTest(ASCIIEncoding ascii, int byteCount)
 {
     Assert.Throws<ArgumentOutOfRangeException>(() =>
     {
         ascii.GetMaxCharCount(byteCount);
     });
 }
Ejemplo n.º 2
0
 private void DoPosTest(ASCIIEncoding ascii, int byteCount, int expectedValue)
 {
     int actualValue;
     ascii = new ASCIIEncoding();
     actualValue = ascii.GetMaxCharCount(byteCount);
     Assert.Equal(expectedValue, actualValue);
 }