Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个输入为 --12-21(有效的 gMonthDay 格式)。在这 12 是月份,21 是日值。我想将输出显示为 DD/MM 值,可以通过拆分值轻松实现。但我不想在代码中硬编码。
谁能建议一种适用于所有情况的不同方法。
提前致谢。
你可以使用这样的东西
string gMonthDay = "--12-21"; string output = DateTime.ParseExact(gMonthDay, "--MM-dd", CultureInfo.InvariantCulture).ToString("dd/MM", CultureInfo.InvariantCulture);