Skip to content

Instantly share code, notes, and snippets.

@nanwang2016
Created August 17, 2020 14:27
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/852f3be0de29467a75e7be7d9934363f to your computer and use it in GitHub Desktop.
Save nanwang2016/852f3be0de29467a75e7be7d9934363f to your computer and use it in GitHub Desktop.
using System;
namespace TestFile
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("The color of the vehicle is: " + Vehicle.Model_color);
}
}
class Vehicle
{
public static string Model_color = "Red";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment