An operation contains the MethodInfo and the methods parameters. It provides a way to invoke a specific method with the specific parameters.
| C# | Visual Basic | Visual C++ |
public class Operation : ICodeGenerable
Public Class Operation _ Implements ICodeGenerable
public ref class Operation : ICodeGenerable
| All Members | Constructors | Methods | Properties | ||
| Icon | Member | Description |
|---|---|---|
| Operation(MethodInfo, array<Object>[]()[]) |
Craete an operation using the specific method and parameters
| |
| Equals(Object) | (Inherited from Object.) | |
| Finalize()()() | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode()()() | Serves as a hash function for a particular type. (Inherited from Object.) | |
| GetType()()() | Gets the Type of the current instance. (Inherited from Object.) | |
| InvokeMethod(Object) |
Call the specific method with the specific parameters on the provided instance | |
| MemberwiseClone()()() | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| Method |
The MethodInfo
| |
| Parameters |
The parameters for this method
| |
| ToCode(ProgrammingLanguage) |
Represent this operation as code
| |
| ToString()()() |
Represent this operation as a string
(Overrides Object.ToString()()().) |
| Object | |
| Operation | |