Method: WIN32OLE::Method#inspect
- Defined in:
- ext/win32ole/win32ole_method.c
#inspect ⇒ String
Returns the method name with class name.
920 921 922 923 924 |
# File 'ext/win32ole/win32ole_method.c', line 920
static VALUE
folemethod_inspect(VALUE self)
{
return default_inspect(self, "WIN32OLE::Method");
}
|