PeanutButter
|
Defines an object which is wrapping another object and can be unwrapped with the provided methods. More...
Public Member Functions | |
object | Unwrap () |
Unwrap the wrapped object as a plain old object. | |
T | Unwrap< T > () |
Unwrap the wrapped object with a hard cast to T (buyer beware!) | |
bool | TryUnwrap< T > (out T result) |
Attempts to unwrap a wrapped value. |
Defines an object which is wrapping another object and can be unwrapped with the provided methods.
bool PeanutButter.Utils.Dictionaries.IWrapper.TryUnwrap< T > | ( | out T | result | ) |
Attempts to unwrap a wrapped value.
T |
Implemented in PeanutButter.Utils.Dictionaries.DictionaryWrappingObject.
object PeanutButter.Utils.Dictionaries.IWrapper.Unwrap | ( | ) |
Unwrap the wrapped object as a plain old object.
Implemented in PeanutButter.Utils.Dictionaries.DictionaryWrappingObject.
Unwrap the wrapped object with a hard cast to T (buyer beware!)
T |
Implemented in PeanutButter.Utils.Dictionaries.DictionaryWrappingObject.