mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
27 lines
441 B
C#
27 lines
441 B
C#
using System;
|
|
|
|
namespace GitHub.CodeQL;
|
|
|
|
public class PublicClass
|
|
{
|
|
public void stuff(String arg)
|
|
{
|
|
Console.WriteLine(arg);
|
|
}
|
|
|
|
public static void staticStuff(String arg)
|
|
{
|
|
Console.WriteLine(arg);
|
|
}
|
|
|
|
protected void nonPublicStuff(String arg)
|
|
{
|
|
Console.WriteLine(arg + Console.ReadLine());
|
|
}
|
|
|
|
internal void internalStuff(String arg)
|
|
{
|
|
Console.WriteLine(arg);
|
|
}
|
|
}
|