rClr offers a function to check whether an object is of a certain type:
https://github.com/Open-Systems-Pharmacology/rClr/blob/c764e5d8554377555c90323e63564aa73d4eb58b/R/rClr-exported.R#L343
Instead of doing it in R, let's do it in .NET directly. Probably a static function that receives an object and either a string of a type, or a Type object, and returns a boolean.
rClroffers a function to check whether an object is of a certain type:https://github.com/Open-Systems-Pharmacology/rClr/blob/c764e5d8554377555c90323e63564aa73d4eb58b/R/rClr-exported.R#L343
Instead of doing it in R, let's do it in .NET directly. Probably a static function that receives an object and either a string of a type, or a
Typeobject, and returns a boolean.