System.Runtime.CompilerServices.ExecutionScope.CreateDelegate C# (CSharp) Метод

CreateDelegate() публичный Метод

public CreateDelegate ( int indexLambda, object locals ) : Delegate
indexLambda int
locals object
Результат System.Delegate
		public Delegate CreateDelegate (int indexLambda, object [] locals)
		{
			return context.CreateDelegate (
				indexLambda,
				new ExecutionScope (context, indexLambda, this, locals));
		}