cs11dotnet7/vscode/Chapter09/WorkingWithStreams/Viper.cs

10 lines
216 B
C#
Raw Normal View History

2022-03-04 09:34:29 +01:00
static class Viper
{
// define an array of Viper pilot call signs
public static string[] Callsigns = new[]
{
"Husker", "Starbuck", "Apollo", "Boomer",
"Bulldog", "Athena", "Helo", "Racetrack"
};
}