I cant figure out the difference between an access modifier and an access specifier.I have read about modifiers in msdn and it sounds like specifier to me.Not sure about the difference in c# and msdn.
Asked
Active
Viewed 21 times
0
-
1There is no difference. From [documentation](http://msdn.microsoft.com/en-us/library/ms173121.aspx); You can use the following access modifiers to **specify** the accessibility of a type or member when you declare it. Access modifiers or access specifiers. They point the same things. – Soner Gönül Nov 17 '14 at 19:20
-
There is no difference, MSDN *somehow* uses access specifier for C++ and access modifier for C# *in documentation*, but they are same – Habib Nov 17 '14 at 19:21
-
Check this out http://stackoverflow.com/questions/5026220/difference-between-access-specifier-and-access-modifier – M.S Nov 17 '14 at 19:25
-
Thanks guys, I will take that there is no difference. – nicholas Nov 17 '14 at 19:29