In C#, what is the difference between methods that are markedpublic staticand methods marked asprivate static?
How are they allocated and accessed?
|
In C#, what is the difference between methods that are marked How are they allocated and accessed? |
||||
|
|
A private static method can only be accessed within the class that it's defined in. A public static method can be accessed outside of the class.
As far as memory allocation goes, see here: |
|||||
|
|
|
Static methods are applied at a class level, ie, an object is not required to access them. The only difference between public and private methods is accessibility. Static methods can be accessed by both static and non-static methods. |
|||
|
|
|
Better google first =) Do have a look at When should I use public/private/static methods? |
|||
|
|
|
Private static methods can only be accessed by other methods in that class. Public static methods are pretty much global in access. |
||||