Developer at Prota Software ;
Hacking in TryHackMe ;
Chillin' at kamp.us ;
- โ๏ธ I use daily:
.cs
,.vb
,.py
,.html
,.sh
- ๐ I'm mostly active within the kamp.us
- ๐ฌ
ping
me about design, architecture, development
Click me to be saluted!
using System;
using System.Collections.Generic;
namespace GitHub
{
class Program
{
public static void Main(string[] args)
{
var kaan = new SoftwareDeveloper();
kaan.Salute();
}
}
internal class SoftwareDeveloper
{
public SoftwareDeveloper()
{
_yearsOfExperience = 2;
_languageSpoken = new List<string>() {"en_US","tr_TR"};
}
private List<string> _languageSpoken;
private Int16 _yearsOfExperience;
public void Salute()
{
Console.WriteLine("Thanks for dropping by, hope you can find some of my work interesting.");
}
}
}