public string DescribeYourClothes()
 {
     return($"Today i dressed in: {_shirt.GetType().Name} and {_trousers.GetType().Name}");
 }
예제 #2
0
 public string DescribeYourClothes()
 {
     return($"Today I'm dressed in: {_shirt.GetType().Name} and {_trousers.GetType().Name} with a pair of {_eyewear.GetType().Name}");
 }
예제 #3
0
파일: Client.cs 프로젝트: baha908/YMT
 public string DecribeYourClothes()
 {
     return($"Bugün giydiklerim: {_shirt.GetType().Name} ve {_trousers.GetType().Name}");
 }