获取参数的调用变量名称

时间:2016-06-05 07:05:28

标签: c# .net ixmlserializable nameof

关于问题Get the name of parameters from a calling methodFinding the Variable Name passed to a Function in C#我还在寻找一种定义WhatDoesTheAnimalSay_WANTED方法的方法:我想知道用作变量的变量的名称参数:

public class Farm
{
    public readonly string Cow = "Muuuuhh";

    public string Cat { get; set; }

    public void MainFunction()
    {
        var dog = "WauWau";
        var kiwi = new Bird("QueeeekQueeek");

        Cat = "Miiiaaauuuu";

        // This one works but looks kinda ugly and is cumbersome when used
        WhatDoesTheAnimalSay(nameof(dog), dog);
        WhatDoesTheAnimalSay(nameof(Cow), Cow);
        WhatDoesTheAnimalSay(nameof(Cat), Cat);
        WhatDoesTheAnimalSay(nameof(kiwi), kiwi);

        WhatDoesTheAnimalSay_WRONG1(dog);
        WhatDoesTheAnimalSay_WRONG2(dog);

        WhatDoesTheAnimalSay_WANTED(dog);
        WhatDoesTheAnimalSay_WANTED(Cow);
    }

    public void WhatDoesTheAnimalSay<T>(string name, T says)
    {
        MessageBox.Show("The " + name + " says: " + says);
        // Shows i.e.: The dog says: WauWau
    }

    public void WhatDoesTheAnimalSay_WRONG1<T>(T says)
    {
        MessageBox.Show("The " + nameof(says) + " says: " + says);
        // Shows: The says says: WauWau
    }

    public void WhatDoesTheAnimalSay_WRONG2<T>(T says, [CallerMemberName] string name = null)
    {
        MessageBox.Show("The " + name + " says: " + says);
        // Shows: The MainFunction says: WauWau
    }
    public void WhatDoesTheAnimalSay_WANTED<T>(T says /*, ?????*/)
    {
        MessageBox.Show("The " /*+ ?????*/ + " says: " + says);
        // Shows: The dog says: WauWau
    }
}

// Just here to show it should work with a class as well.
public class Bird
{
    public string Says { get; } //readonly
    public Bird(string says) {
        Says = says;
    }
    public override string ToString()
    {
        return Says;
    }
}

在现实生活中,我需要使用自定义IXmlSerializablereader.Read...方法在我的课程中实现writer.Write....界面。

所以,不幸的是,我不能引入新的包装类,接口或更改动物名称或保存内容的位置。这意味着它必须使用类和普通字符串,int,decimal,...变量,字段或属性。 换句话说(不是粗鲁的):不要改变动物的定义,只需改变WhatDoesTheAnimalSay_WANTED方法...

修改

正如你们中的一些人想知道这个例子的真实用例,我在这里告诉你我如何存储&amp;读取xml文件中的数据。真正的数据库对象当然更大,所有子类(如Fitter)也使用相同的扩展方法实现IXmlSerializable接口。

    // This is the Database Class which stores all the data
    public class Database : IXmlSerializable
    {
        // The list of all building sites managed
        public List<BuildingSite> BuildingSites { get; set; }

        // The list of all fitters working for the company
        public List<Fitter> Fitters { get; set; }

        private readonly int DatabaseVersion = 1;

        // Write implementation of the IXmlSerializable inteface
        public void WriteXml(XmlWriter writer)
        {
            // Writing all Data into the xml-file
            writer.WriteElementInt(nameof(DatabaseVersion), DatabaseVersion);
            writer.WriteElementList(nameof(BuildingSites), BuildingSites);
            writer.WriteElementList(nameof(Fitters), Fitters);
        }
        public void ReadXml(XmlReader reader)
        {
            // Do the reading here
        }
        public XmlSchema GetSchema() { return null; }

    }

    public class XmlExtensions
    {
        // Writing a list into the xml-file
        public static void WriteElementList<T>(this XmlWriter writer, string elementName, IEnumerable<T> items)
        {
            var list = items is List<T> ? items : items.ToList();

            // The XML-Element should have the name of the variable in Database!!!
            writer.WriteStartElement(elementName);
            writer.WriteAttributeString("count", list.Count().ToString());
            var serializer = new XmlSerializer(typeof(T));
            list.ForEach(o => serializer.Serialize(writer, o, XmlHelper.XmlNamespaces));
            writer.WriteEndElement();
        }
        public static void WriteElementInt(this XmlWriter writer, string elementName, int toWrite)
        {
            // The XMLElement should have the name of the variable in Database!!!
            writer.WriteElementString(elementName, toWrite.ToString(CultureInfo.InvariantCulture));
        }

        // More here....
    }
}

2 个答案:

答案 0 :(得分:9)

您可以使用以Expression<Func<object>>作为参数的方法:

public void WhatDoesTheAnimalSay_WANTED(Expression<Func<object>> expression)
{
    var body = (MemberExpression)expression.Body;
    var variableName = body.Member.Name;

    var func = expression.Compile();
    var variableValue = func();

    MessageBox.Show("The "+ variableName + " says: " + variableValue);
}

使用这种方法可以处理各种变量(静态成员,实例成员,参数,局部变量等),也可以使用属性。

称之为:

WhatDoesTheAnimalSay_WANTED(() => dog)
WhatDoesTheAnimalSay_WANTED(() => Cow)
WhatDoesTheAnimalSay_WANTED(() => Cat)
WhatDoesTheAnimalSay_WANTED(() => kiwi)

常量不可能,因为编译器会在编译时给出它的值替换常量占位符:

const string constValue = "Constant Value";

WhatDoesTheAnimalSay_WANTED(() => constValue)

将转换为

WhatDoesTheAnimalSay_WANTED(() => "Constant Value")

生成类型为expression.Body的{​​{1}},这会在运行时产生异常。

所以你必须小心你提供的那种表达方式。

补充说明

从下面的评论中可以看出,使用lambda表达式来收集变量名称似乎存在争议。

正如@CodeCaster在one of his comments中指出的那样,编译器没有正式指定在匿名包装类中为捕获的成员采用相同的局部变量名称。

但是,我在Expression<TDelegate>的评论中发现了这一点:

  

将表达式视为数据结构的能力使API能够以可以自定义方式检查,转换和处理的格式接收用户代码。

对我而言,这表明表达树的设计完全符合这样的目的。

虽然Microsoft可能出于某种原因改变了这种行为,但似乎没有合理的需要。依赖于principle of least astonishment我认为可以安全地假设ConstantExpression ()=> dog属性类型为Body的{​​{1}}表达式,MemberExpression结算到

如果还需要body.Member.Name的其他类型,则必须更多地计算方法。并且有可能在某些情况下无论如何都不会起作用。

答案 1 :(得分:3)

我担心目前无法达到你想要的效果。本地变量名称不可用于被调用函数。

有一些替代品,你列出了一些。另一种方法是将变量的名称作为属性放在类中。无论如何,这将是更好的设计,因为应用程序中的数据不应该依赖于变量名称。如果有人重命名了所有变量,您的应用程序应该以相同的方式工作。

其他语言(如C / C ++系列)为此目的使用预处理器宏,但它们在C#中不可用。您可以在C ++ / CLI中实现这一点,但只能在没有选项的情况下在编译单元和/或程序集之外导出这样的宏。

所以,对不起,即使使用C#6及其新功能,这也是不可能的。它不应该是。想想你的设计,你可能会想出一个更好的设计。