c# - Finding an instance of a private class in a separate assembly -
in unity project, utilizing networking library which, understandably, keeps track of inbound/outbound traffic. reason, developer decided leave info available in editor, instead of making publicly accessible @ runtime. but, traffic benchmarking, , change code flow @ runtime depending on traffic.
using reflection, instance internal class (and private field) keeps track of networked traffic, not resolve because won't same instance actual separate assembly utilizes, value zero.
so... there way find valid instance of known class inside assembly project references?
Comments
Post a Comment