public static void Log()

in 2021.3/CS10/InterpolatedStringHandler/InterpolatedStringHandlers.cs [33:40]


    public static void Log(ref CustomInterpolatedStringHandler handler)
    {
        var message = handler.ToString();
        if (message != null)
        {
            WriteToFile(message);
        }
    }