Presentation is loading. Please wait.

Presentation is loading. Please wait.

 Krzysztof Cwalina Program Manager Microsoft Corporation  Brad Abrams Product Unit Manager.

Similar presentations


Presentation on theme: " Krzysztof Cwalina Program Manager Microsoft Corporation  Brad Abrams Product Unit Manager."— Presentation transcript:

1  Krzysztof Cwalina Program Manager Microsoft Corporation http://blogs.msdn.com/kcwalina http://blogs.msdn.com/kcwalina  Brad Abrams Product Unit Manager Microsoft Corporation http://blogs.msdn.com/brada http://blogs.msdn.com/brada PC58

2

3 Dow Jones Industrial Average @ 9,000

4 Dow Jones Industrial Average @ 9,000

5

6

7 Framework Design Artifacts: Properties Properties Methods Methods Events Events Constructors Constructors

8 8 public class XmlFile { string filename; Stream data; public XmlFile(string filename) { this.data = DownloadData(filename); }} public XmlFile(string filename) { this.filename = filename; } public XmlFile(string filename) { this.filename = filename; }lazy

9 public class ArrayList { public int Count {get;} }

10

11 EmployeeList l = FillList(); for (int i = 0; i < l.Length; i++){ if (l.All[i] == x){...} if (l.All[i] == x){...}} if (l.GetAll()[i]== x) {...} if (l.GetAll()[i]== x) {...} public Employee[] All {get{}} public Employee[] GetAll() {} Moral: Use method if the operation is expensive Calling Code

12

13

14

15

16

17

18

19

20

21

22

23

24 24

25 Time to cut…

26 26

27

28

29

30 public class TheBase : Object { public override string ToString() { return “Hello from the Base"; } public class Derived : TheBase { public override string ToString() { return “Hello from Derived"; }

31 Derived d = new Derived(); Console.WriteLine (d.ToString()); TheBase tb = d; Console.WriteLine (tb.ToString()); Object o = tb; Console.WriteLine (o.ToString());

32

33 All Virtual members should define a contract Don’t require clients to have knowledge of your overriding Should you call the base?

34 Barbara Liskov

35 public interface IComparable { int CompareTo(object obj); }

36

37

38 Careful dependency management is the necessary ingredient to successful evolution of frameworks. Without it, frameworks quickly deteriorate and are forced out of relevance prematurely.

39

40 BCLBCL WPFWPF XMLXML ReflectionReflection   

41

42

43

44

45

46

47

48

49 49 Climbing a mountain?

50 50 Scaling a peak?

51 51 Running across a desert?

52 Falling into a pit?

53

54

55

56

57

58

59

60

61

62 Read the manual?? Read the manual??

63

64

65

66

67

68 PascalCasing – Each word starts with an uppercase letter camelCasing – First word lower case, others uppercase SCREAMING_CAPS – All upper case with underscores

69 public class MemberDoc { public int CompareTo(object value) public string Name { get;} }

70 public class CMyClass { int CompareTo (object objValue) {..} string lpstrName {get;} int iValue {get;} }

71

72

73

74

75

76

77 Brad Abrams http://blogs.msdn.com/brada Krzysztof Cwalina http://blogs.msdn.com/kcwalina Please fill out the session evals!

78

79 Please fill out your evaluation for this session at: This session will be available as a recording at: www.microsoftpdc.com

80

81 © 2008 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

82


Download ppt " Krzysztof Cwalina Program Manager Microsoft Corporation  Brad Abrams Product Unit Manager."

Similar presentations


Ads by Google