18 lines
391 B
C#
18 lines
391 B
C#
/*
|
|
* Author: Nikolay Dvurechensky
|
|
* Site: https://www.dvurechensky.pro/
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
* Last Updated: 12 мая 2025 02:47:11
|
|
* Version: 1.0.3
|
|
*/
|
|
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// Методы расширения
|
|
/// </summary>
|
|
public static class Extensions
|
|
{
|
|
public static void Foo(this ILogger logger)
|
|
=> Console.WriteLine("Extension Foo()");
|
|
} |