79488209

Date: 2025-03-06 03:51:01
Score: 0.5
Natty:
Report link

Adding to clamchoda's answer, creating an instance using reflection should work as well.

public static dynamic HelperAAA(Type type, int a, int b) {
    return Activator.CreateInstance(type, [a, b]);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Patrick Xavier Silerio