Example #1
0
        public string Operasyon()
        {
            string result = _bilesen.Operasyon();

            result += "Yazılım Tanımlı Ağlar İle";
            return(result);
        }
Example #2
0
        public string Operasyon()
        {
            string result = _bilesen.Operasyon();

            result += "ve bazı robotic süreçler geliştiriyorum";
            return(result);
        }
Example #3
0
        public string Operasyon()
        {
            string s = bilesen.Operasyon();

            s += "ve bazı robotik süreçler geliştiriyorum.";
            return(s);
        }
Example #4
0
        public string Operasyon()
        {
            string s = bilesen.Operasyon();

            s += "Yazılım Tanımlı Ağlar ile";
            return(s);
        }
Example #5
0
        public string Operasyon()
        {
            string s = _bilesen.Operasyon();

            s += "yazılım tanımlı ağlar ile ";
            return(s);
        }
Example #6
0
        public string Operasyon()
        {
            string s = _bilesen.Operasyon();

            s += "ve bazı IoT süreçleri yönetiyorum.";
            return(s);
        }
Example #7
0
 public static void Display(string text, IBilesen bilesen)
 {
     Console.WriteLine(text + bilesen.Operasyon());
 }
Example #8
0
 public static void Display(string s, IBilesen c)
 {
     Console.WriteLine(s + c.Operasyon());
 }