I use FrameworkExtension
Pascal 0
Posts
-
How do you name your extension methods class? -
Any Rammstein fans here?industrial
-
7Z Compressed fileswinrar can unzip them I remember doing it once
-
Is the .NET Framework a successful platform?myspace is in .net too
-
Suggestions for AntiVirus?I use Nod32 too and im really satisfied
-
Looking for info on NET20 SP1.NET 2.0 SP1 is actually required if you want to use LINQ to SQL on .NET 2.0 because it contains an updated version of System.dll read more details here : http://linqinaction.net/blogs/main/archive/2007/09/05/linq-support-on-net-2.0.aspx[^]
-
Do it only once pleaseEffectively, and no one changed it
-
Do it only once pleaseToday we had to edit very old code and we ran into this great piece of code
for (int lnIndice = 1; lnIndice <= 1; lnIndice++) { switch (lnIndice) { case 1: // do something here break; } }
We found it very funny :-D -
Assembly compatibilityA little bit late but thanks
-
How to raise events while clicking a datalist item or a particular Row?? -
Rpc Server Unavailable in Excel Com ObjectTake a look at this http://www.codeproject.com/office/excel_using_oledb.asp[^]
-
at least he triedwikipedia stops at 113 too :) http://en.wikipedia.org/wiki/Prime_number[^]
-
List classList = new List();Because you were reassigning the properties of the same instance each time. Thats why you got the same object twice in your list because the object is by reference. With the modification, you'll create a new instance of the object on each iteration and each object in your list will be different because they point at their own reference. Hope that help :)
-
List classList = new List();Creating a new instance of the ActiveTable variable should do the trick into your while loop while (readerTableInfo.Read()) { tableToAnalyze = new AnalyzeTable(); tableToAnalyze.omniwinRoot = omniwinRoot; tableToAnalyze.table = readerTableInfo.GetString(3).Trim(); tableToAnalyze.tableKey = readerTableInfo.GetString(4).Trim(); tableToAnalyze.AnalyzeTable(); tableToAnalyze.verschil = tableToAnalyze.tableRecords - tableToAnalyze.tableUniqueRecords; if (tableToAnalyze.verschil > 0) { tableToAnalyzeList.Add(tableToAnalyze); } }
-
building a app.config file in a control (dll) -
minimum TimeSpanTake a look at http://www.codeproject.com/csharp/highperformancetimercshar.asp[^]
-
Assembly compatibilityHi I'm looking for a way to check the compatibility between two versions of an assembly. I know how to retrieve the version of an assembly but i'm looking for a way to check the compatibility automatically. In exemple : 1.0.0.1 is compatible with 1.0.0.0 but 1.1.0.0 isn't with version 1.0.0.0 Do I have to verify manually or is there already a method in the Framework that does it ?