Exemple #1
0
 public string DescribeYourClothes()
 {
     return($"Today I'm dressed in: {_shirt.GetType().Name} and {_trousers.GetType().Name} with a pair of {_eyewear.GetType().Name}");
 }
 public string DescribeYourClothes()
 {
     return($"Today i dressed in: {_shirt.GetType().Name} and {_trousers.GetType().Name}");
 }
Exemple #3
0
 public string DecribeYourClothes()
 {
     return($"Bugün giydiklerim: {_shirt.GetType().Name} ve {_trousers.GetType().Name}");
 }
 public void DescribeWhatIAmWearing()
 {
     Console.WriteLine($"I Like to wear {_shirt.GetType().Name} and {_pants.GetType().Name}.");
 }
Exemple #5
0
 public string CurrentDressDescription()
 {
     return(_shirt.GetType().Name + " " + _trouser.GetType().Name);
 }