cs11dotnet7/vscode/Chapter09/WorkingWithStreams/Viper.cs
2022-03-04 08:34:29 +00:00

10 lines
216 B
C#

static class Viper
{
// define an array of Viper pilot call signs
public static string[] Callsigns = new[]
{
"Husker", "Starbuck", "Apollo", "Boomer",
"Bulldog", "Athena", "Helo", "Racetrack"
};
}