mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
364 B
C#
14 lines
364 B
C#
namespace Library;
|
|
|
|
/*
|
|
* This file is for making stubs for library methods used for testing purposes.
|
|
* The file is located in the stubs folder, because then the code is not
|
|
* recognized as being from source.
|
|
*/
|
|
public static class MyExtensions
|
|
{
|
|
public static void Accept(this object o) { }
|
|
|
|
public static void AcceptNullable(this object? o) { }
|
|
}
|