6

我想编写一个执行以下操作的代码片段,比如如果我有一个类,比如说 MyClass:

   class MyClass
    {
        public int Age { get; set; }
        public string Name { get; set; }
    }

所以片段应该创建以下方法:

 public bool DoUpdate(MyClass myClass)
  {
        bool isUpdated = false;
        if (Age != myClass.Age)
        {
            isUpdated = true;
            Age = myClass.Age;
        }
        if (Name != myClass.Name)
        {
            isUpdated = true;
            Name = myClass.Name;
        }
        return isUpdated;
    }

所以我的想法是,如果我为任何类调用代码片段,它应该创建DoUpdate方法,并且应该按照我在上面示例中所做的方式编写所有属性。

所以我想知道:

  1. 是否可以做到以上几点?
  2. 如果是,我应该如何开始,有什么指导吗?
4

2 回答 2

1

你的片段应该在

C:\Users\CooLMinE\Documents\Visual Studio(版本)\代码片段\Visual C#\我的代码片段

获取现有片段并对其进行修改以避免重构文件布局的最简单方法。

这是您可以使用的模板:

<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
    <CodeSnippet Format="1.0.0">
        <Header>
            <Title>snippetTitle</Title>
            <Shortcut>snippetShortcutWhichYouWillUseInVS</Shortcut>
            <Description>descriptionOfTheSnippet</Description>
            <Author>yourname</Author>
            <SnippetTypes>
                <SnippetType>Expansion</SnippetType>
            </SnippetTypes>
        </Header>
        <Snippet>
            <Declarations>
                <Literal>
                </Literal>
                <Literal Editable="false">
                </Literal>
            </Declarations>
            <Code Language="csharp"><![CDATA[yourcodegoeshere]]>
            </Code>
        </Snippet>
    </CodeSnippet>
</CodeSnippets>

当您希望它根据类名等生成名称时,这应该会派上用场:http: //msdn.microsoft.com/en-us/library/ms242312.aspx

于 2012-09-01T19:00:13.623 回答
1

一个实用方法怎么样:

public static class MyUtilities
{
    public static bool DoUpdate<T>(
        this T target, T source) where T: class
    {
        if(target == null) throw new ArgumentNullException("target");
        if(source == null) throw new ArgumentNullException("source");

        if(ReferenceEquals(target, source)) return false;
        var props = typeof(T).GetProperties(
            BindingFlags.Public | BindingFlags.Instance);
        bool result = false;
        foreach (var prop in props)
        {
            if (!prop.CanRead || !prop.CanWrite) continue;
            if (prop.GetIndexParameters().Length != 0) continue;

            object oldValue = prop.GetValue(target, null),
                   newValue = prop.GetValue(source, null);
            if (!object.Equals(oldValue, newValue))
            {
                prop.SetValue(target, newValue, null);
                result = true;
            }
        }
        return result;
    }
}

示例用法:

var a = new MyClass { Name = "abc", Age = 21 };
var b = new MyClass { Name = "abc", Age = 21 };
var c = new MyClass { Name = "def", Age = 21 };

Console.WriteLine(a.DoUpdate(b)); // false - the same
Console.WriteLine(a.DoUpdate(c)); // true - different

Console.WriteLine(a.Name); // "def" - updated
Console.WriteLine(a.Age);

请注意,如果要在紧密循环(等)中使用,则可以对其进行极大优化,但这样做需要元编程知识。

于 2012-09-01T19:06:28.643 回答