Kayıtlar

Temmuz, 2013 tarihine ait yayınlar gösteriliyor

C# Mantıksal Operatorler

Burada mantıksal ifadelerin nasıl calıstıgından ve iki tane degişik sart yapılarından bahsettik. public class Mantiksal     {         public bool State { get ; set ; }         public bool State2 { get ; set ; }        public Mantiksal( bool state, bool state2)        {            this .State = state;            this .State2 = state2;        }        /// <summary>        /// Ve baglacı iki durumda true oldugunda true ddeger döndürür.         /// İki degiskenide kontrol eder.        /// </summary>        /// <r...