Forum Discussion
- PrathyushaCHOccasional Contributor
Got this. But with this process Iam only able to access public methods but not private and protected methods
- rraghvaniChampion Level 3
In most programming languages, there are three access modifiers:
Public - the property or method can be accessed from everywhere. This is default.
Protected - the property or method can be accessed within the class and by classes derived from that class.
Private - the property or method can ONLY be accessed within the class.
You won't be able to access protected or private members.
- rraghvaniChampion Level 3
See https://support.smartbear.com/testcomplete/docs/working-with/managing-projects/properties/clr-bridge.html and the topic on Calling Functions From .NET Assemblies.
Related Content
- 2 years ago
- 2 years ago