In a C# class we have a SortedList member m_addinProjects
we want to provide an iterator to allow the consumer of
this class access to the items in the collection. Please
provide an iterator method for the AnalyzeAddinsDLL class
below and an example of how it would be used.
namespace AnalyzeAddinsDLL
{
public class AllAddInProjects
{
private SortedList<string, AddInProject>
m_addinProjects;
public AllAddInProjects()
{
m_addinProjects = new SortedList<string,
AddInProject>();
}
}
}
what is the need of using interface in program
ex:if we have a program like this
interface1()
{
void method1();
void method();
}
class a1 : interface1
{
a1 b = new b();
b.method1();
b.method2();
}
so without using interface also we can achieve this then
wat is the need to use the interface?
plz give me the answer
17
What are the access allowed for compilation
units(namespace),class and structs and what are its default
access?
please exaplain gridview and what are the process available
for it. how to add the row number automatically? is it
possible to add child controls ?
37
how can include .netframeworl 2.0 in application setup
63
Hi to all..I have to create an intranet application on
C#.NET windows Application so please please let can you
people help me as iam new in .NET and if u have any samples
or website address from where i can get sample please let know.
15
Can Any body send C Sharp latest interview questions to my
mail id: alim.mtech@gmail.com.
18
f i give input like 1,1,4,5,6,1,2,5,4,1,2, then output
should be like : 1-4, 2-2, 4-2, 5-1, 6-1 which means 1
occurs 4 times, 2 occurs 2 times like so.
336
Did a generic class can be inherited by a normal class?
what are the files we need to deploay a project in the
system?
31
How to raise an selection changed event associated with
listbox in datagridview control with a sample example?Here
the listbox is a child control associated with datagridview
control.
25
Did it possible to cast a generic type of derived class to
generic type of base class?
How to do and Apply Themes to Datagrid,Lable,Textbox,etc.,
in C#.NET 2005 Windows Application? (like who we will do
themes in ASP.NET using .CSS and .SKIN files). Urgent!!
13
how to compare numbers and dispaly the largest ?
*first thing I wanted to do is to input how many numbers to
be compared
*and then analyzed the largest then display it.
20
how to create crystal reports
give one detail example(i want to view age category report)
please give suitable example in my small knowledge
50
from web.config file with connection string who to interact
means who to connect in gridview. in my system shows null
something error what is the problem