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?s the difference between <c> and <code> XML
documentation tag?
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
Did it possible to cast a generic type of derived class to
generic type of base class?
Where test director stores its data ?
Database ,Local file etc...?
I need to read this data from Visual Studio 2005 c# client.
Regards
55
I wish to create a windows application to perform a similar
function as that of the "Search" which is provided to look
for related files and folders in the System..
What steps must i follow??
29
the selected inf of other combobox?How do you achieve it?
what is be the overhead, if i use binary transmission. and
will it be sent using xml text or how ?
73
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
What is Serialization and how do we implement (in real time
scenario)
21
what is the difference between c-sharp and vb.net?What kind
of security or advances we find in both languages?