mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
16 lines
226 B
C#
16 lines
226 B
C#
using System;
|
|
|
|
namespace GitHub.CodeQL;
|
|
|
|
public interface PublicGenericInterface<T>
|
|
{
|
|
void stuff(T arg);
|
|
|
|
void stuff2<T2>(T2 arg);
|
|
|
|
static void staticStuff(String arg)
|
|
{
|
|
Console.WriteLine(arg);
|
|
}
|
|
}
|