Answers for "using object in c#"

C#
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
0

How to create a class and objects in C#

class ClassName {
  static void printText(string text) {
    Console.WriteLine(text);
    Console.ReadLine();
    //Console.ReadLine(); is for keeping the window open
  }
  
  static void Main(string[] args) {
    //the object printText
    printText("Hello, World");
  }
}
Posted by: Guest on November-01-2021

C# Answers by Framework

Browse Popular Code Answers by Language