当前位置:  开发笔记 > 编程语言 > 正文

我可以使用数组或其他可变数量的参数初始化C#属性吗?

如何解决《我可以使用数组或其他可变数量的参数初始化C#属性吗?》经验,为你挑选了4个好方法。

是否可以创建一个可以用可变数量的参数初始化的属性?

例如:

[MyCustomAttribute(new int[3,4,5])]  // this doesn't work
public MyClass ...

Mark Bracket.. 172

属性将采用数组.虽然如果你控制属性,你也可以使用params(这对消费者来说更好,IMO):

class MyCustomAttribute : Attribute {
    public int[] Values { get; set; }

    public MyCustomAttribute(params int[] values) {
       this.Values = values;
    }
}

[MyCustomAttribute(3, 4, 5)]
class MyClass { }

您的数组创建语法恰好关闭:

class MyCustomAttribute : Attribute {
    public int[] Values { get; set; }

    public MyCustomAttribute(int[] values) {
        this.Values = values;
    }
}

[MyCustomAttribute(new int[] { 3, 4, 5 })]
class MyClass { }


Marc Gravell.. 31

你可以这样做,但它不符合CLS:

[assembly: CLSCompliant(true)]

class Foo : Attribute
{
    public Foo(string[] vals) { }
}
[Foo(new string[] {"abc","def"})]
static void Bar() {}

显示:

Warning 1   Arrays as attribute arguments is not CLS-compliant

对于常规反射使用,可能优选具有多个属性,即

[Foo("abc"), Foo("def")]

但是,这不适用于TypeDescriptor/ PropertyDescriptor,其中只支持任何属性的单个实例(第一个或最后一个获胜,我无法回想起哪个).



1> Mark Bracket..:

属性将采用数组.虽然如果你控制属性,你也可以使用params(这对消费者来说更好,IMO):

class MyCustomAttribute : Attribute {
    public int[] Values { get; set; }

    public MyCustomAttribute(params int[] values) {
       this.Values = values;
    }
}

[MyCustomAttribute(3, 4, 5)]
class MyClass { }

您的数组创建语法恰好关闭:

class MyCustomAttribute : Attribute {
    public int[] Values { get; set; }

    public MyCustomAttribute(int[] values) {
        this.Values = values;
    }
}

[MyCustomAttribute(new int[] { 3, 4, 5 })]
class MyClass { }



2> Marc Gravell..:

你可以这样做,但它不符合CLS:

[assembly: CLSCompliant(true)]

class Foo : Attribute
{
    public Foo(string[] vals) { }
}
[Foo(new string[] {"abc","def"})]
static void Bar() {}

显示:

Warning 1   Arrays as attribute arguments is not CLS-compliant

对于常规反射使用,可能优选具有多个属性,即

[Foo("abc"), Foo("def")]

但是,这不适用于TypeDescriptor/ PropertyDescriptor,其中只支持任何属性的单个实例(第一个或最后一个获胜,我无法回想起哪个).


注意:多个属性需要属性上的AttributeUsage属性.http://stackoverflow.com/questions/553540/how-to-create-duplicate-allowed-attribute

3> Scott Dorman..:

尝试像这样声明构造函数:

public class MyCustomAttribute : Attribute
{
    public MyCustomAttribute(params int[] t)
    {
    }
}

然后你就可以使用它:

[MyCustomAttribute(3, 4, 5)]



4> Jon Skeet..:

那应该没关系.从规范,第17.2节:

如果以下所有语句都为真,则表达式E是attribute-argument-expression:

E的类型是属性参数类型(第17.1.3节).

在编译时,E的值可以解析为以下之一:

一个恒定的值.

System.Type对象.

属性参数表达式的一维数组.

这是一个例子:

using System;

[AttributeUsage(AttributeTargets.All, AllowMultiple = false, Inherited = true)]
public class SampleAttribute : Attribute
{
    public SampleAttribute(int[] foo)
    {
    }
}

[Sample(new int[]{1, 3, 5})]
class Test
{
}


但请注意CLS合规性
推荐阅读
echo7111436
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有