using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SayiTahminOyunu_Hocanin_yazdigi
{
public static class GameUtil
{
public static string gameTitle = "Sayi Bulmaca";
public static string gameVersion = "v2.0.3";
public static string InputBekle()
{
return Console.ReadLine();
}
public static void yaz(string prmData)
{
Console.WriteLine(prmData);
}
public static int RandomRakamCek()
{
Random RakamYaratici = new Random();
return RakamYaratici.Next(1, 100);
}
/// <summary>
/// object olarak gelen datayı Int32'ye çevirir, hata durumunda 0 döner.
/// </summary>
public static int ToInt(object prmValue)
{
int rtrnValue = 0;
try
{
rtrnValue = Convert.ToInt32(prmValue);
return rtrnValue;
}
catch
{
return rtrnValue;
}
}
}
}
Yazılım Eğitimi, Sql Server, C, C++, C#, Pyhton, Mobile, Web & IT üzerine yazılar.
Kaydol:
Kayıt Yorumları (Atom)
Mac adres formatı excel
excel iki nokta mac addres formatı Mac adresi karakterlerini üst üste iki nokta : iki nokta üst üste olacak şekilde excel dosyasında ayırır....
-
hp Notebook Product Information Not Valid error hatası açılışta çıkan uyarı, System Board (00A) Error Displays on a Black Screen çözümü, f...
-
using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; namespace FirmaOtomasyonu...
Hiç yorum yok:
Yorum Gönder