mirror of
https://github.com/github/codeql.git
synced 2025-12-22 11:46:32 +01:00
18 lines
388 B
C#
18 lines
388 B
C#
class PointlessForwardingMethod
|
|
{
|
|
public static void Print(string firstName, string lastName)
|
|
{
|
|
Print(firstName + " " + lastName);
|
|
}
|
|
|
|
public static void Print(string fullName)
|
|
{
|
|
Console.WriteLine("Pointless forwarding methods are bad, " + fullName + "...");
|
|
}
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
Print("John", "Doe");
|
|
}
|
|
}
|