Answers for "c# class in a class"

C#
1

creating a class in c#

//Declaring an object of type MyClass.
MyClass mc = new MyClass();

//Declaring another object of the same type, assigning it the value of the first object.
MyClass mc2 = mc;
Posted by: Guest on June-24-2021
0

c# classes

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

C# Answers by Framework

Browse Popular Code Answers by Language