methodsignature.cs

来自「C#编写的网络爬虫程序 效率很高 很好用!」· CS 代码 · 共 51 行

CS
51
字号
using System;

namespace NUnit.Mocks
{
	/// <summary>
	/// Summary description for MockSignature.
	/// </summary>
	public class MethodSignature
	{
		public readonly string typeName;
		public readonly string methodName;
		public readonly Type[] argTypes;

		public MethodSignature( string typeName, string methodName, Type[] argTypes )
		{
			this.typeName = typeName;
			this.methodName = methodName;
			this.argTypes = argTypes; 
		}

		public bool IsCompatibleWith( object[] args )
		{
			if ( args.Length != argTypes.Length )
				return false;

			for( int i = 0; i < args.Length; i++ )
				if ( !argTypes[i].IsAssignableFrom( args[i].GetType() ) )
					return false;

			return true;
		}

		public static Type[] GetArgTypes( object[] args )
		{
			if ( args == null )
				return new Type[0];

			Type[] argTypes = new Type[args.Length];
			for (int i = 0; i < argTypes.Length; ++i)
			{
				if (args[i] == null)
					argTypes[i] = typeof(object);
				else
					argTypes[i] = args[i].GetType();
			}

			return argTypes;
		}
	}
}

⌨️ 快捷键说明

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