I've been using Visual studio to develop a C++ application. I'm not an expert in C++, neither other languages derived from C like C#. So, studying visual studio's symbology I found a reference for the same symbol saying "Field or Variable". Correct if I'm wrong please, but this sounds to me pretty almost like "Method or Function" definition.
In C++ there are no methods, instead they are commonly called as functions. So, in C++ there are also no Fields, it's a particularity from C# which works like a variable except that it should be private and it needs to be accessed from a "Get" call. Am I wrong?