I have project that using object from dll.
namespace XXX.XXX.XXX.Nsi
{
[Serializable]
[DataContract]
[MayBeAmplified]
public class GngInfo
{
public GngInfo();
[MaxLenValidator(1000)]
public string Name { get; set; }
}
}
I need to find where Name
get specific value for example "Cargo".
What ways exist to do this?
- Modify huge dll and replace it. But I do not have source code of dll.
- Rewrite all places where used
GngInfo
with another object implemented not in dll.
What other ways?