Can I add extension methods to an existing static class?(我可以将扩展方法添加到现有的静态类吗?)
问题描述
我是 C# 中的扩展方法的粉丝,但没有成功将扩展方法添加到静态类,例如 Console
.
I'm a fan of extension methods in C#, but haven't had any success adding an extension method to a static class, such as Console
.
例如,如果我想在Console
中添加一个扩展,名为'WriteBlueLine
',这样我就可以去:
For example, if I want to add an extension to Console
, called 'WriteBlueLine
', so that I can go:
Console.WriteBlueLine("This text is blue");
我尝试通过添加一个本地的公共静态方法,将 Console
作为 'this
' 参数...但没有骰子!
I tried this by adding a local, public static method, with Console
as a 'this
' parameter... but no dice!
public static class Helpers {
public static void WriteBlueLine(this Console c, string text)
{
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine(text);
Console.ResetColor();
}
}
这没有向 Console
添加一个WriteBlueLine
"方法...我做错了吗?还是要求不可能的事?
This didn't add a 'WriteBlueLine
' method to Console
... am I doing it wrong? Or asking for the impossible?
推荐答案
没有.扩展方法需要对象的实例变量(值).但是,您可以在 ConfigurationManager
接口周围编写一个静态包装器.如果实现包装器,则不需要扩展方法,因为您可以直接添加方法.
No. Extension methods require an instance variable (value) for an object. You can however, write a static wrapper around the ConfigurationManager
interface. If you implement the wrapper, you don't need an extension method since you can just add the method directly.
public static class ConfigurationManagerWrapper
{
public static ConfigurationSection GetSection( string name )
{
return ConfigurationManager.GetSection( name );
}
.....
public static ConfigurationSection GetWidgetSection()
{
return GetSection( "widgets" );
}
}
这篇关于我可以将扩展方法添加到现有的静态类吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我可以将扩展方法添加到现有的静态类吗?
基础教程推荐
- 如何激活MC67中的红灯 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- c# Math.Sqrt 实现 2022-01-01