Now we Create this type of class using Visual Studio in Graphical mode(Note cording Works use)
1: using System;
2: using System.Collections.Generic;
3: using System.Linq;
4: using System.Text;
5: 6: namespace ClassDiagram
7: {8: public class Class1
9: {10: private int intCounter;
11: private int strValues;
12: private int strName;
13: 14: public event EventHandler CusterAdded;
15: 16: public int getName
17: {18: get
19: {20: throw new System.NotImplementedException();
21: }22: set
23: { 24: } 25: } 26: 27: public int setName
28: {29: get
30: {31: throw new System.NotImplementedException();
32: }33: set
34: { 35: } 36: } 37: 38: public void TestMethods()
39: {40: throw new System.NotImplementedException();
41: } 42: 43: private int TestMethod_2(out string param1, ref string param2, string param3)
44: {45: throw new System.NotImplementedException();
46: } 47: } 48: }




No comments:
Post a Comment