Skip to content

Instantly share code, notes, and snippets.

@nanwang2016
Created August 17, 2020 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanwang2016/ddf78a2b4d4779433d1bf9d5dd039e21 to your computer and use it in GitHub Desktop.
Save nanwang2016/ddf78a2b4d4779433d1bf9d5dd039e21 to your computer and use it in GitHub Desktop.
using System;
namespace TestFile
{
class Program
{
static void Main(string[] args)
{
Vehicle.startTheVehichle();
}
}
class Vehicle
{
public static string Model_color = "Red";
public static void startTheVehichle()
{
Console.WriteLine("The car is started!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment