From: 011netservice@gmail.com Date: 2025-05-02 Subject: DynamicObject Class https://learn.microsoft.com/en-us/dotnet/api/system.dynamic.dynamicobject?view=net-9.0 歡迎來信交流, 訂購軟體需求. public class DynamicObject : System.Dynamic.IDynamicMetaObjectProvider Examples Assume that you want to provide alternative syntax for accessing values in a dictionary, so that instead of writing sampleDictionary["Text"] = "Sample text" (sampleDictionary("Text") = "Sample text" in Visual Basic), you can write sampleDictionary.Text = "Sample text". Also, you want this syntax to be case-insensitive, so that sampleDictionary.Text is equivalent to sampleDictionary.text. The following code example demonstrates the DynamicDictionary class, which is derived from the DynamicObject class. The DynamicDictionary class contains an object of the Dictionary type (Dictionary(Of String, Object) in Visual Basic) to store the key-value pairs, and overrides the TrySetMember and TryGetMember methods to support the new syntax. It also provides a Count property, which shows how many dynamic properties the dictionary contains. // The class derived from DynamicObject. public class DynamicDictionary : DynamicObject { // The inner dictionary. Dictionary dictionary = new Dictionary(); // This property returns the number of elements // in the inner dictionary. public int Count { get { return dictionary.Count; } } // If you try to get a value of a property // not defined in the class, this method is called. public override bool TryGetMember( GetMemberBinder binder, out object result) { // Converting the property name to lowercase // so that property names become case-insensitive. string name = binder.Name.ToLower(); // If the property name is found in a dictionary, // set the result parameter to the property value and return true. // Otherwise, return false. return dictionary.TryGetValue(name, out result); } // If you try to set a value of a property that is // not defined in the class, this method is called. public override bool TrySetMember( SetMemberBinder binder, object value) { // Converting the property name to lowercase // so that property names become case-insensitive. dictionary[binder.Name.ToLower()] = value; // You can always add a value to a dictionary, // so this method always returns true. return true; } } class Program { static void Main(string[] args) { // Creating a dynamic dictionary. dynamic person = new DynamicDictionary(); // Adding new dynamic properties. // The TrySetMember method is called. person.FirstName = "Ellen"; person.LastName = "Adams"; // Getting values of the dynamic properties. // The TryGetMember method is called. // Note that property names are case-insensitive. Console.WriteLine(person.firstname + " " + person.lastname); // Getting the value of the Count property. // The TryGetMember is not called, // because the property is defined in the class. Console.WriteLine( "Number of dynamic properties:" + person.Count); // The following statement throws an exception at run time. // There is no "address" property, // so the TryGetMember method returns false and this causes a // RuntimeBinderException. // Console.WriteLine(person.address); } } // This example has the following output: // Ellen Adams // Number of dynamic properties: 2 Remarks The DynamicObject class enables you to define which operations can be performed on dynamic objects and how to perform those operations. For example, you can define what happens when you try to get or set an object property, call a method, or perform standard mathematical operations such as addition and multiplication. This class can be useful if you want to create a more convenient protocol for a library. For example, if users of your library have to use syntax like Scriptobj.SetProperty("Count", 1), you can provide the ability to use much simpler syntax, like scriptobj.Count = 1. You cannot directly create an instance of the DynamicObject class. To implement the dynamic behavior, you may want to inherit from the DynamicObject class and override necessary methods. For example, if you need only operations for setting and getting properties, you can override just the TrySetMember and TryGetMember methods. In C#, to enable dynamic behavior for instances of classes derived from the DynamicObject class, you must use the dynamic keyword. For more information, see Using Type dynamic. In Visual Basic, dynamic operations are supported by late binding. For more information, see Early and Late Binding (Visual Basic). The following code example demonstrates how to create an instance of a class that is derived from the DynamicObject class. public class SampleDynamicObject : DynamicObject {} //... dynamic sampleObject = new SampleDynamicObject (); You can also add your own members to classes derived from the DynamicObject class. If your class defines properties and also overrides the TrySetMember method, the dynamic language runtime (DLR) first uses the language binder to look for a static definition of a property in the class. If there is no such property, the DLR calls the TrySetMember method. The DynamicObject class implements the DLR interface IDynamicMetaObjectProvider, which enables you to share instances of the DynamicObject class between languages that support the DLR interoperability model. For example, you can create an instance of the DynamicObject class in C# and then pass it to an IronPython function. For more information, see Dynamic Language Runtime Overview. Note If you have a simple scenario in which you need an object that can only add and remove members at run time but that does not need to define specific operations and does not have static members, use the ExpandoObject class. If you have a more advanced scenario in which you need to define how dynamic objects participate in the interoperability protocol, or you need to manage DLR fast dynamic dispatch caching, create your own implementation of the IDynamicMetaObjectProvider interface.