calculate.cs

来自「应用AOP」· CS 代码 · 共 45 行

CS
45
字号
//
// Write by Peopleyl 2007-04-13
//
#if UNuit
using System;
using System.Data;
using System.Threading;
using Aspect.AopBase;
using Aspect.Exception;

namespace Aspect.Test
{
	[ExceptionAttribute]
	public class Calculate : AspectObject
	{	
		[ExceptionAttribute("I Love You")]
		public string CalculateLog(int a)
		{	
			//Thread.Sleep(5000);
			return Convert.ToString(checked(a*a));
		}
		
		public object CalculateLog(int a,int b)
		{	
			//Thread.Sleep(5000);
			return checked(a / b);
		}

		[ExceptionAttribute(123456789)]
		public int CalculateLog(int a,int b,int c)
		{	
			//Thread.Sleep(5000);
			return checked(a+b+c);
		}

		public DataSet TestForDataSet(string tableName)
		{	
			//Thread.Sleep(5000);
			DataSet ds = new DataSet(tableName);
			return ds;
		}
	}
}
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?