| Question | Answer |
| DateTime today = DateTime("12/31/2007 12:15:00"); | DateTime today = DateTime.Parse("12/31/2007 12:15:00"); |
| var nums = new int{ 1, 2, 3 }; | var nums = new int[] { 1, 2, 3 }; |
| string[] names = {Fred, Sue, Barney}; | string[] names = {"Fred", "Sue", "Barney"}; |
| Create an interface called.. IAlarmClock | interface IAlarmClock { ... } |
| Extend the IAlarmClock interface to IClock | interface IAlarmClock : IClock { ... } |
| Have a WristWatch class implement IAlarmClock and ITimer. | class WristWatch : IAlarmClock, ITimer { ... } |
Embed Code - If you would like this activity on your web page, copy the script below and paste it into your web page.
Normal Size Small Size show me how
Normal Size Small Size show me how
Created by:
silentthread
on 2010-12-18