Data types or Whatchamacallit?

Hi,

could anyone please give me a link with definitions of each and everyone of these:

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

image

Here’s the ones I know:

image Namespace

image Internal Class

image Static Class

image Struct

image Public Class

image Public Interface

image Extension Method

image Public Method

image Static Method

image Private Field

image Static Field

image Property

image Private Constructor

image Constructor

image

image Private Static Method

image

image Constant / Literal

image Private Static Field

image Static Property

image Static Internal Property

image Static Internal Method

image Internal Method

image Internal Extension Method

image Protected Constructor

image Private Constant / Literal

image Private Enumeration

image Public Enumeration

image Public Field

Where are you screenshotting these from, incidentally?

Thanks for the reply,

sharpdevelop

but that’s not I meant by “definition” this is their name and I can get their name from the API, I need definition so I can understand what they are for and how and when I can call them, especially from IronPython.

It’s not as simple as just giving each one a definition - this is a whole series of related concepts that make up the basis of Object-Oriented Programming in C#.
https://csharp.net-tutorials.com/getting-started/introduction/ - the section on Classes covers a lot of the critical concepts:
Class
Interface
Static
Visibility (Public/Private/Protected/Internal)
Constructors
Constants
Namespaces
Properties

Advanced Topics covers Structs + Enumerations

that gets you 80% of the way there

2 Likes