Posts

Showing posts from April, 2011

C# FAQ 2

1. Does C# support multiple-inheritance? Ans. No! It may be achieved however, using interfaces. 2. Who is a protected class-level variable available to? Ans. It is available to any sub-class (a class inheriting this class). 3. Are private class-level variables inherited? Ans. Yes, but they are not accessible. Although they are not visible or accessible via the class interface, they are inherited. 4. Describe the accessibility modifier "protected internal". Ans. It is available to classes that are within the same assembly and derived from the specified base class. 5. What’s the top .NET class that everything is derived from? Ans. System.Object. 6. What does the term immutable mean? Ans. The data value may not be changed. Note: The variable value may be changed, but the original immutable data value was discarded and a new data value was created in memory. 7. What’s the difference between System.String and System.Text.StringBuilder classes? Ans. System.String i

C# FAQ #1

Image
C#FAQ #1 Collected from the Internet: What does the modifier protected internal in C# mean? The Protected Internal can be accessed by Members of the Assembly or the inheriting class, and of course, within the class itself. In VB.NET, the equivalent of protected internal is protected friend . The access of this modifier is limited to the current assembly or the types derived from the defining class in the current assembly. Can multiple data types be stored in System.Array? So whats an array all about? An array is a collection of items of the same type, that is grouped together and encompassed within an array object. The array object, or the System.Array object to be precise, is derived from the System.Object class. It is thus, stored in the form of a heap in the memory. An array may be of single dimensional, multi-dimensional or jagged (a jagged array means an array within an array). A group of items when assigned values within braces impli

Picget PhotoShine ,VCE

Image
VCE software Visual CertExam Suite full Software to open VCE File 1.9.734 Visual CertExam Suite full Software to open VCE File 1.9.734 http://spidersoft.in/index.php?a=prog&os=Windows&cat=System-Utilities&subcat=File-Disk-Managemen&det=101&dwn Picget PhotoShine 3.3 Software Picget PhotoShine 3.3 29.47 Mb PhotoShine gives you an easy way to make photo collage by adding your photo into different beautiful templates. For example, you can add your photo into a classical love style template, a pink girl style template, a baby cartoon template, or a magazine cover template etc by just one click in PhotoShine. Main Features: 1) Easy to use Just one click, you can add your photo into the template which you like. 2) 9 themes (styles), more than 700 beautiful templates included. The 9 themes are: GIRL,BABY,LOVE,BOARD, DREAM, MAGAZINE,CALENDAR,FRAME and OTHER. There are more than 700 templates included in PhotoShine, which means you

SharePoint Object Model -Samples

Image
There are several namespaces(around 50) that house the SharePoint object model. Out of these 50 namespaces we are using only 16 namespaces, rest of the namespaces are reserved for Microsoft internal use. 1. Document Library Document libraries are a special type of list designed to store documents.To access a document library through object model we need to use Microsoft.Sharepoint namespace. To use this namespace in ASP.net we need to add a reference of Microsoft.Sharepoint.dll. This dll we can find from the below mentioned path: C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\ISAPI Let's take each and every class in this namespace: SPDocumentLibrary Class: This class represents a document library in Windows Sharepoint Services. In C# code: SPDocumentLibrary obj = (DocumentLibrary)oList oList is an object for list. The above code will cast the list object into Document Library. SPPictureLibrary Class: This class represents a picture library in Wind