Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is C# 'internal' in VB.net?

What is C# internal keyword equivalent in VB.NET?

like image 606
dannyrosalex Avatar asked Mar 07 '10 09:03

dannyrosalex


People also ask

What is meant by C?

noun plural c's, C's or Cs. the third letter and second consonant of the modern English alphabet. a speech sound represented by this letter, in English usually either a voiceless alveolar fricative, as in cigar, or a voiceless velar stop, as in case.

What is C and C++ difference?

Conclusion. In a nutshell, the main difference between C and C++ is that C is a procedural with no support for objects and classes whereas C++ is a combination of procedural and object-oriented programming languages.

What is C and why it is used?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

Why is C called C?

After language 'B', Dennis Ritchie came up with another language which was based upon 'B'. As in alphabets B is followed by C and hence he called this language as 'C'.


2 Answers

It's Friend. See the MSDN documentation.

like image 199
Will Vousden Avatar answered Oct 09 '22 09:10

Will Vousden


C#'s internal in VB.NET is Friend.

like image 44
Alex Budovski Avatar answered Oct 09 '22 09:10

Alex Budovski