mono / CppSharp

Tools and libraries to glue C/C++ APIs to high-level languages

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Adding IsVolatile property to Method class.

deadlocklogic opened this issue · comments

Consider:

struct Test {
    void method() volatile
    {
    }
};

The Method class doesn't have an IsVolatile property.
This property might be handy when analyzing the AST or to skip all volatile methods.

Maybe Function.FunctionType.TypeQualifiers.IsVolatile should've worked but it evaluates to false.

Yes but needs to be implemented in C# right?