要通过 C# 扩展 .NET Framework 的功能,你可以创建自定义类库(Class Library)或者使用现有的类库
创建一个新的 C# 类库项目:
添加对 .NET Framework 的引用:
编写扩展方法:
扩展方法允许你向现有类型添加新功能,而无需修改其源代码。例如,你可以为 string
类型添加一个扩展方法,用于反转字符串。
public static class StringExtensions
{
public static string Reverse(this string input)
{
char[] chars = input.ToCharArray();
Array.Reverse(chars);
return new string(chars);
}
}
public class FileHelper
{
public static void AppendText(string filePath, string content)
{
using (StreamWriter writer = new StreamWriter(filePath, true))
{
writer.WriteLine(content);
}
}
// 添加其他文件操作方法...
}
编译并生成 DLL 文件:
在其他项目中使用你的类库:
using
语句导入你的类库命名空间。示例:
using System;
using YourNamespace; // 替换为你的类库命名空间
class Program
{
static void Main(string[] args)
{
string input = "Hello, World!";
string reversed = input.Reverse(); // 使用扩展方法
Console.WriteLine(reversed);
FileHelper.AppendText("output.txt", "This is a test."); // 使用自定义类
}
}
通过这种方式,你可以使用 C# 扩展 .NET Framework 的功能,并在其他项目中重复使用你的类库。