public IList<FieldDescriptor> GetExtensionsInDeclarationOrder(MessageDescriptor descriptor)
Returns a readonly list of all the extensions define in this type that extend
the provided descriptor type in the order they were defined in the source .proto file
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-28 UTC."],[[["`ExtensionCollection` is a class designed to simplify retrieving descriptors of extensions for a message."],["It inherits from the `object` class and includes several inherited members, such as `Equals`, `GetHashCode`, and `GetType`."],["The `UnorderedExtensions` property provides a read-only list of all defined extensions, ordered as they appear in the source `.proto` file."],["The `GetExtensionsInDeclarationOrder` method returns a read-only list of extensions that extend a specific descriptor, ordered by their declaration in the `.proto` file."],["The `GetExtensionsInNumberOrder` method provides a read-only list of extensions that extend a specific descriptor, ordered by ascending field number."]]],[]]