c# math to radiant

C#
public double ConvertToRadians(double angle)
{
    return (Math.PI / 180) * angle;
}

Source

Also in C#: