Beispiel #1
0
    public static void Main(string[] args)
    {
        SFNovel nov = new SFNovel("Hobbit", "Tolkien");

        Console.WriteLine(nov.title == "Hobbit");
        Console.WriteLine(nov.writer == "Tolkien");
    }
Beispiel #2
0
 public static void Main(string[] args)
 {
     SFNovel nov = new SFNovel();
 }