使用代码生成来转换集合的项目

发布于 2025-01-01 12:06:23 字数 2029 浏览 1 评论 0原文

我正在使用 C# 进行代码生成,我想在吸气剂内投射一个支持字段。

这是一个例子:

public class Potato
{
}

public class ProxyPotato : Potato
{    
}

public class Stew
{
  private ICollection<ProxyPotato> _proxyPotatoes;

  //This is the code I would like to generate (specialy the cast part)
  public ICollection<Potato> Potatoes { get { return _proxyPotatoes.Cast<Potato>().ToList(); } }
}

我有这个代码可以生成一个属性,但我不知道如何执行强制转换:

private static void SetProperty(TypeBuilder builder, string propertyName, Type propertyType, FieldBuilder fieldBuilder)
{
  const string GetterPrefix = "get_";
  const string SetterPrefix = "set_";

  // Generate the property
  var propertyBuilder = builder.DefineProperty(propertyName, PropertyAttributes.HasDefault, propertyType, null);


  // Property getter and setter attributes.
  const MethodAttributes propertyMethodAttributes = MethodAttributes.Public | MethodAttributes.HideBySig | MethodAttributes.SpecialName | MethodAttributes.Virtual;

  // Define the getter method.
  var getterMethod = builder.DefineMethod(string.Concat(GetterPrefix, propertyName), propertyMethodAttributes, propertyType, Type.EmptyTypes);

  // Emit the IL code.
  // ldarg.0
  // ldfld,_field
  // ret
  ILGenerator getterILCode = getterMethod.GetILGenerator();
  getterILCode.Emit(OpCodes.Ldarg_0);
  getterILCode.Emit(OpCodes.Ldfld, fieldBuilder);
  getterILCode.Emit(OpCodes.Ret);

  // Define the setter method.
  MethodBuilder setterMethod = builder.DefineMethod(
  string.Concat(SetterPrefix, propertyName),
  propertyMethodAttributes, null, new Type[] { propertyType });

  // Emit the IL code.
  // ldarg.0
  // ldarg.1
  // stfld,_field
  // ret
  ILGenerator setterILCode = setterMethod.GetILGenerator();
  setterILCode.Emit(OpCodes.Ldarg_0);
  setterILCode.Emit(OpCodes.Ldarg_1);
  setterILCode.Emit(OpCodes.Stfld, fieldBuilder);
  setterILCode.Emit(OpCodes.Ret);

  propertyBuilder.SetGetMethod(getterMethod);
  propertyBuilder.SetSetMethod(setterMethod);
}

I'm doing code generation with C# and I would like to cast a backing field inside a getter.

Here is an example:

public class Potato
{
}

public class ProxyPotato : Potato
{    
}

public class Stew
{
  private ICollection<ProxyPotato> _proxyPotatoes;

  //This is the code I would like to generate (specialy the cast part)
  public ICollection<Potato> Potatoes { get { return _proxyPotatoes.Cast<Potato>().ToList(); } }
}

I have this code which can generate a property but I don't know how to execute a Cast:

private static void SetProperty(TypeBuilder builder, string propertyName, Type propertyType, FieldBuilder fieldBuilder)
{
  const string GetterPrefix = "get_";
  const string SetterPrefix = "set_";

  // Generate the property
  var propertyBuilder = builder.DefineProperty(propertyName, PropertyAttributes.HasDefault, propertyType, null);


  // Property getter and setter attributes.
  const MethodAttributes propertyMethodAttributes = MethodAttributes.Public | MethodAttributes.HideBySig | MethodAttributes.SpecialName | MethodAttributes.Virtual;

  // Define the getter method.
  var getterMethod = builder.DefineMethod(string.Concat(GetterPrefix, propertyName), propertyMethodAttributes, propertyType, Type.EmptyTypes);

  // Emit the IL code.
  // ldarg.0
  // ldfld,_field
  // ret
  ILGenerator getterILCode = getterMethod.GetILGenerator();
  getterILCode.Emit(OpCodes.Ldarg_0);
  getterILCode.Emit(OpCodes.Ldfld, fieldBuilder);
  getterILCode.Emit(OpCodes.Ret);

  // Define the setter method.
  MethodBuilder setterMethod = builder.DefineMethod(
  string.Concat(SetterPrefix, propertyName),
  propertyMethodAttributes, null, new Type[] { propertyType });

  // Emit the IL code.
  // ldarg.0
  // ldarg.1
  // stfld,_field
  // ret
  ILGenerator setterILCode = setterMethod.GetILGenerator();
  setterILCode.Emit(OpCodes.Ldarg_0);
  setterILCode.Emit(OpCodes.Ldarg_1);
  setterILCode.Emit(OpCodes.Stfld, fieldBuilder);
  setterILCode.Emit(OpCodes.Ret);

  propertyBuilder.SetGetMethod(getterMethod);
  propertyBuilder.SetSetMethod(setterMethod);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妖妓 2025-01-08 12:06:23

强制转换扩展方法是一种方法调用。您需要发出以下内容:

return Enumerable.ToList<Potato>(Enumerable.Cast<Potato>(_proxyPotatoes));

您可以使用 OpCodes.Call 指令调用这些静态方法。

The cast extension method is a method call. You need to emit the following:

return Enumerable.ToList<Potato>(Enumerable.Cast<Potato>(_proxyPotatoes));

You can call these static methods using the OpCodes.Call instruction.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文