c# - Get value of property in dll -


i have project using object dll.

namespace xxx.xxx.xxx.nsi {     [serializable]     [datacontract]     [maybeamplified]     public class gnginfo     {         public gnginfo();         [maxlenvalidator(1000)]         public string name { get; set; }     } } 

i need find name specific value example "cargo". ways exist this?

  1. modify huge dll , replace it. not have source code of dll.
  2. rewrite places used gnginfo object implemented not in dll.

what other ways?

you can implement class mygnginfo inherits gnginfo , implement custom logic. when done, replace gnginfo usages mygnginfo usages.


Comments

Popular posts from this blog

Combining PHP Registration and Login into one class with multiple functions in one PHP file -

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -