Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| // <Snippet1> | |
| using System; | |
| public class Automobile | |
| { | |
| // No implementation. All members are inherited from Object. | |
| } | |
| public class Example | |
| { | |
| public static void Main() | |
| { | |
| Automobile firstAuto = new Automobile(); | |
| Console.WriteLine(firstAuto); | |
| } | |
| } | |
| // The example displays the following output: | |
| // Automobile | |
| // </Snippet1> |