Constructor Declaration of Class
(String name, String breed,
int age, String color)
| 21 | |
| 22 | // Constructor Declaration of Class |
| 23 | public Dog(String name, String breed, |
| 24 | int age, String color) |
| 25 | { |
| 26 | this.name = name; |
| 27 | this.breed = breed; |
| 28 | this.age = age; |
| 29 | this.color = color; |
| 30 | } |
| 31 | |
| 32 | // Docstring of this function |
| 33 | static void Main(string[] args) |
nothing calls this directly
no outgoing calls
no test coverage detected