首页上一页 1 下一页尾页 1 条记录 1/1页
throw new Exception("Character is not valid");这句代码是什么意思?
发表在C#答疑区
2017-09-27 悬赏:5 学分
是否精华
是
否
版块置顶:
是
否
尊敬的老师:
下午好
我的问题是:
1)throw new Exception("Character is not valid");这句代码是什么意思?
2)throw 是什么意思?Exception又代表着什么?
3)这句代码的语法结构是?
源代码如下:
public class ASCstr
{
public static string Chr(int asciiCode)
{
if (asciiCode >= 0 && asciiCode <= 255)
{
System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding();
byte[] byteArray = new byte[] { (byte)asciiCode };
string strCharacter = asciiEncoding.GetString(byteArray);
return (strCharacter);
}
else
{
throw new Exception("ASCII Code is not valid");
}
}
}