Description Usage Arguments Value Examples
Gets a string representation of the signature of a member (i.e. field, property, method). Mostly used to interactively search for what arguments to pass to a method.
1 | clrGetMemberSignature(clrobj, memberName)
|
clrobj |
CLR object |
memberName |
The exact name of the member (i.e. field, property, method) to search for |
a character vector with summary information on the method/member signatures
1 2 3 4 5 6 7 8 9 10 | ## Not run:
library(rClr)
testClassName <- "Rclr.TestObject";
testObj <- clrNew(testClassName)
clrReflect(testObj)
clrGetMemberSignature(testObj, 'set_PropertyIntegerOne')
clrGetMemberSignature(testObj, 'FieldIntegerOne')
clrGetMemberSignature(testObj, 'PropertyIntegerTwo')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.