Open
Description
Most of the method signatures look something like this (matching the C++ API names verbatim):
public Instruction CreateArrayMalloc(Type @Ty, Value @Val, string @Name)
They could be changed to match the .NET naming convention:
public Instruction CreateArrayMalloc(Type ty, Value val, string name)
Or further, to something more descriptive like:
public Instruction CreateArrayMalloc(Type allocatedType, Value array, string name)
Does any of the two sound good (and which one)? If so, in future commits I may start converting some of the signatures as I go, if that's okay.