class Delegate

in global :: System

Represents a delegate, which is a data structure that refers to a static method or to a class instance and an instance method of that class.


public MethodInfo Method { get; }

Gets the method represented by the delegate.

  • Returns A describing the method represented by the delegate.

public object Target { get; }

Gets the class instance on which the current delegate invokes the instance method.

  • Returns The object on which the current delegate invokes the instance method, if the delegate represents an instance method; if the delegate represents a static method.

public bool HasSingleTarget { get; }

😔 No documentation found.