列挙型があり、列挙型がulongかどうかを確認したいと思います。
これまでに試しました:
var checkValue = Enum.GetUnderlyingType(param.ParamType); // param is enum
if (checkValue is ulong){ } // doesn't work
var checkValue = param.value;
if (checkValue is ulong){ } // doesn't work
何か案は?