mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
12 lines
245 B
C#
12 lines
245 B
C#
using System.Collections.ObjectModel;
|
|
|
|
class Good
|
|
{
|
|
public static readonly ReadOnlyCollection<string> Foo
|
|
= new ReadOnlyCollection<string>(new string[] { "hello", "world" });
|
|
public static void Main(string[] args)
|
|
{
|
|
|
|
}
|
|
}
|