gpt4 book ai didi

c# - 为 IFormatProvider 提供编译时常量

转载 作者:太空狗 更新时间:2023-10-29 23:13:39 26 4
gpt4 key购买 nike

我正在尝试创建一个具有以下签名的字符串扩展方法:

public static DateTime? TryParseExact(this string src, string format, IFormatProvider provider = DateTimeFormatInfo.CurrentInfo, DateTimeStyles style = DateTimeStyles.None)
{
}

我遇到编译器错误:

Default parameter value for 'provider' must be a compile-time constant

在谷歌上找不到任何东西,我唯一的解决办法就是这样做:

public static DateTime? TryParseExact(this string src, string format, IFormatProvider provider = null, DateTimeStyles style = DateTimeStyles.None)
{
if (provider == null)
provider = DateTimeFormatInfo.CurrentInfo;
}

有人知道如何在签名中设置 IFormatProvider 的默认值吗?有可能吗? IFormatProvider 是一个接口(interface),所以我假设这就是问题所在。

最佳答案

how I can set the default value of IFormatProvider in the signature? Is it even possible?

没有。可选参数(“默认参数”)是对语言的修改,随 C# 4.0 和 Visual Studio 2010 引入。

为参数提供默认值不会更改该方法签名。在您的情况下,只有一个方法签名:

TryParseExact(this string src, string format, IFormatProvider provider, DateTimeStyles style);

并且在该方法的元数据中,因此在编译的程序集中,将记录默认值。任何希望使用这些默认值的调用者都将从元数据中获取这些值 - 并将它们的值编译到调用站点中。

因为它是这样工作的,默认值必须是编译时常量,所以它们可以嵌入到元数据中。

DateTimeFormatInfo.CurrentInfo不是编译时常量,它是由运行时设置的对象实例。

关于c# - 为 IFormatProvider 提供编译时常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34002288/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com