mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
191 B
C#
14 lines
191 B
C#
using System;
|
|
|
|
namespace GitHub.CodeQL;
|
|
|
|
public interface PublicInterface
|
|
{
|
|
void stuff(String arg);
|
|
|
|
static void staticStuff(String arg)
|
|
{
|
|
Console.WriteLine(arg);
|
|
}
|
|
}
|