clrGetMethods: List the instance methods of a CLR object

Description Usage Arguments Value Examples

Description

List the instance methods of a CLR object

Usage

1
clrGetMethods(clrobj, contains = "")

Arguments

clrobj

CLR object

contains

a string that the methods names returned must contain

Value

a list of names of the methods of the CLR object

Examples

1
2
3
4
5
6
7
8
## Not run: 
library(rClr)
testClassName <- "Rclr.TestObject";
testObj <- clrNew(testClassName)
clrGetMethods(testObj)
clrGetMethods(testObj, 'Get')

## End(Not run)

jmp75/rClr documentation built on June 11, 2019, 6:45 p.m.