Method | Description | |
---|---|---|
ImplementEmptyStubMethod ( |
Implements a method as a no operation method. Method can be virtual, abstract or not.
|
|
ImplementStubProperty ( |
Implement a property with getter/setter that relies on a private backup field. This is useful only to provide a temporary implementation of abstract properties that would be generated in a second time (this does not provide more than auto implemented properties available in C# 3.0 and later.
|
Method | Description | |
---|---|---|
EmitEmptyImplementation ( |
public static ImplementEmptyStubMethod ( |
||
tB | The |
|
method | The method to implement. | |
isVirtual | bool | Defaults to false: the method is sealed. True to keep the method virtual. |
return |
public static ImplementStubProperty ( |
||
tB | The |
|
property | The property to implement. | |
isVirtual | bool | Defaults to false: the method is sealed. True to keep the method virtual. |
return |