Проблем със задачата Password Guess.C#
Незнам каква ми е грешката затова питам ако някой може да ми помогне.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp4
{
class Program
{
static void Main(string[] args)
{
var password = bool.Parse(Console.ReadLine()); if (password = "s3cr3t!P@ssw0rd")
{ Console.WriteLine("Welcome"); }
else
{ Console.WriteLine("Wrong password"); }
}
}
}