mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
16 lines
232 B
C#
16 lines
232 B
C#
using System;
|
|
|
|
namespace GitHub.CodeQL;
|
|
|
|
public interface PublicInterface
|
|
{
|
|
void stuff(String arg);
|
|
|
|
string PublicProperty { get; set; }
|
|
|
|
static void staticStuff(String arg)
|
|
{
|
|
Console.WriteLine(arg);
|
|
}
|
|
}
|