lepregon23
Site Gezgini
- Mesajlar
- 31
Konsol Ekranına Yazdığınız Yazıyı Parola Gibi * İşareti Olarak Yazan Ve Ardından Enter Tuşuna Bastığınızda Yazdığınız Yazıyı Görüntüleyen C# Uygulaması;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
ConsoleKeyInfo keyınfo = default(ConsoleKeyInfo);
string password = "";
do
{
keyınfo = Console.ReadKey(true);
if (keyınfo.Key != ConsoleKey.Backspace)
{
password += keyınfo.KeyChar;
Console.Write("*");
}
} while (!(keyınfo.Key == ConsoleKey.Enter));
Console.WriteLine();
Console.WriteLine("Girilen Şifre : " + password);
Console.WriteLine("Hazırlayan lepregon23(M.T.TUĞYAN)");
Console.ReadLine();
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
ConsoleKeyInfo keyınfo = default(ConsoleKeyInfo);
string password = "";
do
{
keyınfo = Console.ReadKey(true);
if (keyınfo.Key != ConsoleKey.Backspace)
{
password += keyınfo.KeyChar;
Console.Write("*");
}
} while (!(keyınfo.Key == ConsoleKey.Enter));
Console.WriteLine();
Console.WriteLine("Girilen Şifre : " + password);
Console.WriteLine("Hazırlayan lepregon23(M.T.TUĞYAN)");
Console.ReadLine();
}
}
}