📄 calculatetest.cs
字号:
//
// Write by Peopleyl 2007-04-13
//
using System;
using System.Data;
using Aspect.AopBase;
using Aspect.Exception;
namespace AspectTest
{
[ExceptionAttribute]
public class CalculateTest : AspectObject
{
[ExceptionAttribute("I Love You to")]
public string CalculateLog(int a)
{
//Thread.Sleep(5000);
throw new ArgumentOutOfRangeException();
return Convert.ToString(checked(a*a));
}
public object CalculateLog(int a,int b)
{
//Thread.Sleep(5000);
throw new ArgumentException();
return checked(a / b);
}
[ExceptionAttribute(123456789)]
public int CalculateLog(int a,int b,int c)
{
//Thread.Sleep(5000);
throw new ArithmeticException();
return checked(a+b+c);
}
public DataSet TestForDataSet(string tableName)
{
//Thread.Sleep(5000);
DataSet ds = new DataSet(tableName);
throw new ConstraintException();
return ds;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -