Answers for "c# object {"

C#
0

c# objects

using System;

class Book
  {
    public string title;
    public string author;
    public int pages;
  }


class MainClass {
  public static void Main (string[] args) {
    Book book1 = new Book();
    book1.title = "Harry Potter";
    book1.author = "JK Rowling";
    book1.pages = 400;
    Console.WriteLine(book1.title);
  }
}
Posted by: Guest on March-17-2021
1

c# object

// Create a object
class Car 
{
  string color = "red";

  static void Main(string[] args)
  {
    Car myObj = new Car();
    Console.WriteLine(myObj.color);
  }
}
Posted by: Guest on July-19-2021

C# Answers by Framework

Browse Popular Code Answers by Language