A Type
describing a ref or out parameter has an & suffix:
using System;
using System.Reflection;
using System.Collections.Generic;
class MainClass
{
static void Main()
{
Type t = typeof(bool).GetMethod("TryParse").GetParameters()[1].ParameterType;
Console.WriteLine(t.Name); // Boolean&
}
}
The output:
Boolean&