/* ------------------------ My Meta Content Here SEO ------------------------ */

Pages

Main Menu

Tuesday, March 27, 2012

Public Vs Shared in VB.NET OOPS Concept

public vs shared public vs. shared -------------------------------------------------------------------------------- Public and Shared aren't comparable like protected and private and public and friend are. Those are access modifiers - they modify who has the right to access them. Public simply means that any code can access the member (function/property/field). Shared which is more like a flag (something either is shared or isn't), indicates that the member (function/property/field) doesn't...
Read More »

My Blog List