3
CS1503 Argument 1: cannot convert from "group of methods" to "Object"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Teste
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("QUal é a sua idade?");
            int age = Convert.ToInt32(Console.ReadLine); // erro nesta linha
            if (age < 16)
            {
                Console.WriteLine("Não é permitido entrada de menores de 16.");
            } else if (age >= 16)
            {
                Console.WriteLine("Bem-Vindo!");
            }
        }
    }
}
I’m Using Visual Studio 2017.

https://answall.com/tour
– Rovann Linhalis