ufcpp-live / UfcppLiveAgenda

@ufcpp live streaming agenda
MIT License
24 stars 2 forks source link

そろそろ1回振り返りするか #51

Closed ufcpp closed 1 year ago

ufcpp commented 2 years ago

配信URL: https://youtu.be/af7RIgV1exM

前々回と前回の間、2か月くらい空いたのもあり、その間ブログ書いてた。

C#

ちゃんと配信で触れた:

まだ:

文字(Unicode)がらみ:

ufcpp-live commented 2 years ago

​Global usingに入れるべき名前空間の総選挙

(開催形態だけ要検討)

ufcpp-live commented 2 years ago

image

ufcpp-live commented 2 years ago
logger.Log(LogLevel.Information,
    new(1),
    (number: 1, name: "abc"), null,
    (state, _)
    => $"{state.number} {state.name} {DateTimeOffset.UtcNow}");

logger.Log(LogLevel.Information,
    new(1),
    "自前parseする前提の文字列 ${DateTime.Now}");
ufcpp-live commented 2 years ago
M1(); // Program.M1();
//M2();
//M3();

partial class Program
{
    public static void M1() { }
    public static void M2() { }
    public static void M3() { }
}
ufcpp-live commented 2 years ago

↓ なぜおまえは feature 一覧の中に並んでる。

record R
{
    public sealed override string ToString()
    {
        return base.ToString();
    }
}

↓こいつはサイレント修正だったのに。

M1();

partial class Program
{
    public static void M1() { }
    public static void M2() { }
    public static void M3() { }
}