예제 #1
0
파일: Mobile.cs 프로젝트: HLPK/Tasks
        private string GetDescription(KeyBoardBase keyBoard)
        {
            var descrioptionBuilder = new StringBuilder();

            descrioptionBuilder.Append($"Keyboard: {Keyboard.ToString()}");
            return(descrioptionBuilder.ToString());
        }
예제 #2
0
파일: SimCorpMobile.cs 프로젝트: HLPK/Tasks
 public SimCorpMobile(int id, ScreenBase screen, KeyBoardBase keyboard)
 {
     this.ID       = id;
     this.Screen   = screen;
     this.Keyboard = keyboard;
 }