首頁 > 後端開發 > C++ > 如何在運行時在 C# 中建立、排序和過濾動態屬性?

如何在運行時在 C# 中建立、排序和過濾動態屬性?

Linda Hamilton
發布: 2025-01-05 01:22:41
原創
568 人瀏覽過

How can I create, sort, and filter dynamic properties in C# at runtime?

在C 中建立動態屬性

動態屬性新增和修改

要在執行階段在類別中建立動態屬性,您可以使用字典來儲存屬性名稱和值。考慮以下程式碼:

Dictionary<string, object> properties = new Dictionary<string, object>();
登入後複製

此字典可用來定義類別的動態屬性。例如,要新增名為「test」且值為100 的動態屬性,您可以編寫:

properties["test"] = 100;
登入後複製

排序和過濾動態屬性

建立動態屬性後,您可以還可以為您的物件新增排序和篩選功能。以下是使用LINQ 過濾的範例:

var filtered = from obj in objects
             where (int)obj["test"] >= 150
             select obj;
登入後複製

這是使用自訂比較器進行排序的範例:

Comparer<int> c = new Comparer<int>("test");
objects.Sort(c);
登入後複製

範例實作

以下完整內容程式碼範例示範了C# 中動態屬性的建立、修改、排序和篩選:

using System;
using System.Collections.Generic;
using System.Linq;

namespace ConsoleApplication1
{
    class ObjectWithProperties
    {
        Dictionary<string, object> properties = new Dictionary<string, object>();

        public object this[string name]
        {
            get
            {
                if (properties.ContainsKey(name))
                {
                    return properties[name];
                }
                return null;
            }
            set
            {
                properties[name] = value;
            }
        }
    }

    class Comparer : IComparer where T : IComparable
    {
        string m_attributeName;

        public Comparer(string attributeName)
        {
            m_attributeName = attributeName;
        }

        public int Compare(ObjectWithProperties x, ObjectWithProperties y)
        {
            return ((T)x[m_attributeName]).CompareTo((T)y[m_attributeName]);
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            // create some objects and fill a list
            var obj1 = new ObjectWithProperties();
            obj1["test"] = 100;
            var obj2 = new ObjectWithProperties();
            obj2["test"] = 200;
            var obj3 = new ObjectWithProperties();
            obj3["test"] = 150;
            var objects = new List(new ObjectWithProperties[] { obj1, obj2, obj3 });

            // filtering:
            Console.WriteLine("Filtering:");
            var filtered = from obj in objects
                           where (int)obj["test"] >= 150
                           select obj;
            foreach (var obj in filtered)
            {
                Console.WriteLine(obj["test"]);
            }

            // sorting:
            Console.WriteLine("Sorting:");
            Comparer c = new Comparer("test");
            objects.Sort(c);
            foreach (var obj in objects)
            {
                Console.WriteLine(obj["test"]);
            }
        }
    }
}
登入後複製

以上是如何在運行時在 C# 中建立、排序和過濾動態屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板