1
2
3
4
		public static bool ContentEquals<T>(
	this IEnumerable<T> first,
	IEnumerable<T> second,
...

C# On IEnumerable<> compari...

by petar.petrov.myopenid.com, July 06, 2009 16:43

Yes, you can't use this on ...

Avatar Talk
1
2
3
4
		public static bool ContentEquals<T>(
	this IEnumerable<T> first,
	IEnumerable<T> second,
...

C# On IEnumerable<> compari...

by petar.petrov.myopenid.com, June 26, 2009 07:51 Star_fullStar_fullStar_fullStar_fullStar_full

I have some suggestions abo...

Avatar Talk
1
2
3
4
public static IEnumerable<Plugin> LoadPlugins()
{
	var pluginFolder = Path.Combine(Environment.CurrentDirectory, "plugins");
...

C# On Plugin Loader

by petar.petrov.myopenid.com, April 23, 2009 07:14

Your code is just fine. Why...

Avatar Talk