|
|
Comments and Discussions
|
|
 |
|

|
Hi,
In the diagram, in the start of this article, you have metioned that Object is the base type of every other type where in you inheriting nterface IEnumerable with Object class.. How can this be possible > Can an interface inherits a class ?
|
|
|
|

|
But I Want to make my ArrayList Readable
not a copy Ex
class Properties
{
static void Main(string[] args)
{
ArrayList myL = new ArrayList(4);
myL.AddRange(new String[] { "Mango", "Orange", "Apple" });
var Tim=ArrayList.ReadOnly(myL);
myL.Add("Champ");
Tim.Add("Maggie");
bool r= myL.IsReadOnly;
Console.WriteLine(r);
Console.WriteLine("Checking:{0}",Tim.IsReadOnly);
foreach (var item in myL)
{
Console.WriteLine(item);
}
Console.Read();
}
}
In My Code I want myL to be a Readonly but in my code I am unable to do that
Please Provide a Solution
|
|
|
|

|
This is not an article; no value added by the author beyond what is freely available in MSDN.
|
|
|
|

|
i must ask something...
how these ideas come into ur mind,,,,
well its always the idea that makes the difference.....
my best wishes for u....
|
|
|
|

|
I cannot see any article on CP which would cover the basics of collections like yours. Good work.
But, as others already mentioned, there are too less details and too many topics. Moreover, your article is dangerously close to the MSDN documentation clone. What would be nice: theory, performance comprasion, applications, links to MSDN and summary instead of method listings. Help a beginner to choose which class is suitable for his project.
Greetings - Gajatko
Portable.NET is part of DotGNU, a project to build a complete Free Software replacement for .NET - a system that truly belongs to the developers.
|
|
|
|

|
The article is fairly easy to follow. However, it does not go into any great detail, but rather just gives the basics which are readily available in any text on the subject.
|
|
|
|

|
Nothing new here, this is all in basic books.
|
|
|
|

|
I would not have approved this article as it is currently written.
|
|
|
|

|
It is more of a documentation of general purpose collection functions instead of a article!!
|
|
|
|
 |
|
|
General News Suggestion Question Bug Answer Joke Rant Admin
|
This article focuses on managing collections in .NET Framework 2.0.
| Type | Article |
| Licence | CPOL |
| First Posted | 10 Dec 2008 |
| Views | 94,855 |
| Downloads | 1,218 |
| Bookmarked | 55 times |
|
|