class c# code example
Example 1: c# class declaration
public class Customer
{
}
Example 2: class in c#
public class Car
{
public bool isDriving = false;
public Car( string make )
{
Make = make;
}
private string _make = string.Empty;
public string Make
{
get { return _make; }
set { _make = value; }
}
public void drive()
{
if( isDriving )
{
}
else
{
isDriving = true;
}
}
public void stop()
{
if( isDriving )
{
isDriving = false;
}
else
{
}
}
}
using System;
public class Program
{
public static void Main()
{
Car newCar = new Car( "VW" );
Console.WriteLine( newCar.Make );
newCar.drive();
Console.WriteLine( newCar.isDriving );
newCar.stop();
Console.WriteLine( newCar.isDriving );
}
}
public class Car
{
public bool isDriving = false;
public Car( string make )
{
Make = make;
}
private string _make = string.Empty;
public string Make
{
get { return _make; }
set { _make = value; }
}
public void drive()
{
if( isDriving )
{
}
else
{
isDriving = true;
}
}
public void stop()
{
if( isDriving )
{
isDriving = false;
}
else
{
}
}
}
Example 3: how to create class in C#
class ClassName
{
}
Example 4: classes c#
public class x
{
(condition)
}
Example 5: 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);
}
}