What is friend and protected-friend access specifier in
vb.net?
Answer / viramgama parth
Friend Variables declared as Friend can be accessed from the outside world but only from other
classes of the assembly, which are classes that make up the application. You cannot declare a Friend
variable inside the method declaration space and implementation.
·
Protected Friend Variables declared as Protected Friend are afforded the same protection as
Friend access. The difference, however, is that you can also access these variables from derived
classes. You cannot declare a Protected Friend variable inside the method declaration space and
implementation.
Is This Answer Correct ? | 0 Yes | 0 No |
What are the various open source tool available for VB.NET?
Define cls?
What languages does the .net framework support?
Why do we use byref keyword in vb.net?
What is jagged array in vb.net?
Explain option strict?
What is a static variable?
Name a feature which is common to all .net languages?
What are the parts of the visual basic control?
What is multiple form in vb?
What are the different variables in vb.net?
Explain the difference between dispose and finalize()?