The `GetLimitType` method is a part of the `DynamicMetaObject` class in C#. It is used to get the type that represents the limit of possible runtime types as determined by the object's dynamic behavior. In other words, it returns the most specific common type that all possible dynamic types of the `DynamicMetaObject` could be implicitly converted to. This method is helpful when dealing with dynamic objects and dynamic binding, as it allows for better understanding of the potential runtime types that can be expected.
C# (CSharp) System.Dynamic DynamicMetaObject.GetLimitType - 30 examples found. These are the top rated real world C# (CSharp) examples of System.Dynamic.DynamicMetaObject.GetLimitType extracted from open source projects. You can rate examples to help us improve the quality of examples.