mirror of
https://github.com/github/codeql.git
synced 2026-01-23 03:12:58 +01:00
17 lines
265 B
C#
17 lines
265 B
C#
using System;
|
|
|
|
namespace GitHub.CodeQL;
|
|
|
|
public class PublicGenericClass<T, T2> : PublicGenericInterface<T>
|
|
{
|
|
public void stuff(T arg)
|
|
{
|
|
Console.WriteLine(arg);
|
|
}
|
|
|
|
public void stuff2<T2>(T2 arg)
|
|
{
|
|
Console.WriteLine(arg);
|
|
}
|
|
}
|