런타임 시 클래스에서 동적 속성을 생성하려면 사전을 활용하여 다음을 수행할 수 있습니다. 속성 이름과 값을 저장합니다. 다음 코드를 고려해보세요.
Dictionary<string, object> properties = new Dictionary<string, object>();
이 사전은 클래스의 동적 속성을 정의하는 데 사용할 수 있습니다. 예를 들어, 값이 100인 "test"라는 동적 속성을 추가하려면 다음과 같이 작성합니다.
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!