| Author: Abhishek Arya 14 Sep 2006 | Member Level: Diamond | Rating: Points: 2 |
If you are using .dll which is made in c# it will give you option to select any of the function. Case sensetive not matter in vb but as there are two seprate function in .dll so it will give both the function.
|
| Author: Bhargava Pandey 14 Sep 2006 | Member Level: Silver | Rating: Points: 2 |
C# is case sensative so when u call f() the f (small) will be called.
|
| Author: vihari 14 Sep 2006 | Member Level: Silver | Rating: Points: 2 |
hai praveen... it will treat as small f only.
thank you
|
| Author: Sidhartha Gundavarapu 15 Sep 2006 | Member Level: Gold | Rating: Points: 2 |
No. you cannot use those methods in VB.Net
This is against the best practices to have methods having same name and different case. This especially should be avoided when you are developing generic assemblies that will be re-used in other applications
|