Custom parameter types
public class Person
{
public readonly string name;
public readonly int age;
public Person(string name, int age)
{
this.name = name;
this.age = age;
}
}Converter methods
[Converter]
public static Person PersonTypeConverter(ArgumentReader reader)
{
}Last updated