mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-19 04:08:39 +00:00
16 lines
288 B
C#
16 lines
288 B
C#
public class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
string[] names = new string[] { "Alice", "Bob", "Charlie" };
|
|
|
|
// Check if array is System.Array
|
|
if (names is System.Array)
|
|
{
|
|
return 42;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
}
|