What needs to be done to be able to step-into (F11) the reflected code.
I am creating the object using reflection:
myObject.GetType().GetConstructor().Invoke(myParams)
and I want to go into the constructor's code. If I press F11 it just skips the constructor's code ;(
but at the same time if I put a breakpoint at ctor and hit F5 - ...
What precisely do we mean by ASP.NET version 2.0 ? Is it the version lined with .net CLR version 2.0 ?
What about aspnet_isapi.dll and aspnet_wp.exe ? How do they fit in with respect to the versions 1.1 / 2.0 / 3.5 of the .net framework?
.NET 3.5 uses CLR 2.0. Does that mean nothing changes in ASP.NET 3.5 except for additions to the ...
hi guys,
i've been reading through the linq to xml documentation in msdn and some other tutorials and yet i failed to find the right way to do this query as of now :(
Basically, i want to loop through each student in the class, for each question, keep a counter of individual skill, i.e. for student 123, the tally should be 001.101.033.0...
Suppose for any url if a '//' is added instead on '/' by accident in the request. Can this effect the http request performance?
e.g.
http://www.microsoft.com/downloads
v/s
http://www.microsoft.com//downloads
This reason I am asking this is; in one of our application the dynamic urls were building wrong on production server for som...
I would like to extract a file compressed in the tar.z (or .taz) format with the .NET framework.
The problem is I cannot find any libraries wich support the LZW algorithm (often, zip, gzip and bzip2 are supported, and Z is not, for example in SharpZipLib).
It appears that compress (the algorithm producing .z compressed files) is quite o...
How do I generate, based on a xsd and c#, an xml containing only the mandatory elements. I would prefer to use xlinq but I am also open to alternatives.
...
Hello.
I'm looking for an implementation of thread-safe blocking queue for .NET.
By "thread-safe blocking queue" I mean:
- thread-safe access to a queue where Dequeue method call blocks a thread untill other thread puts (Enqueue) some value.
By the moment I'v found this one:
http://www.eggheadcafe.com/articles/20060414.asp
(But it's for...
I have a plain old Windows Forms application with a WiX installer, and it is installed for all users to the Program Files folder as you would expect. The application hosts add-ins using the System.AddIn framework.
Because the System.AddIn framework needs to write to some of the add-in pipeline folders (AddIns, AddInSideAdapters, AddInVi...
Hi,
Google reveals rather old reports. How is the current situation?
It would be nice to have percentage figures by framework version.
Thanks in advance,
Katey
...
Why would you use third party caching tool and which one would you rcommend for ASP.net?
...
Hi,
I'm designing a new site for a local government department in Scotland and I want to make sure I meet the minimum accessibility level for the site.
I had planned to use some jQuery effects, and also to AJAXify the content. But I realised all this JavaScript probably won't be accessible.
We will be using VS2008 ASP.NET 3.5 framewo...
I have two sets (ILists) where I need all the items from the 1st list, where the item is not in the second list.
Can anyone point me to the best way of achieving this with a LINQ statement?
...
I've created a WPF converter class:
public class DoubleConverter : IValueConverter
{
public object Convert(object value, Type TargetType, object parameter, CultureInfo culture)
{
//blah blah
}
}
I wonder who sets the culture parameter that is passed. I would expect it to be the same as the current windows settings,...
How would I get the actual directory path of an IIS application (virtual folder) using WMI?
...
How do winforms options systems work?
I've seen one article which implements the functionality via xml serialisation. Is it possible to implement this functionality via a class using static or constant variables? I can't quite remember, but do consts/static variables maintain state even when the application is closed?
Of course, I know...
Hello,
I have List collection with around 35,000 strings
Typical string looks like this:
"<i>füüs</i>ampri tähis;lüh ld-st<i>anno</i>, aastal;<i>maj</i> lüh pr-st<i>argent</i>, raha (kursisedelitel)"
Basically this string contains bunch of words in Estonian :)
I need to allow user to perform RegExp search on 35,000 strings
If I pe...
Excel's add-in named "Analysis ToolPak" provides "Yield" function for calculation of yield on security that pays periodic interest.
Function works well and returns proper data.
My understanding is function base on kind of iteration it is not so easy implement it in my code.
My question is anybody know/seen implementation in C# (eventu...
I need help with regular expression.
I have very large collection of text files with different contents. But every file contains one hexadecimal key. Every key has exactly 16 hexadecimal digits ("E4 34 F1 FB...") and always begins with "00" or "01". In some cases they have one separator character (":").
Here are some example keys:
00...
Microsoft is promoting .Net for over 8 years now.
.Net assemblies are versioned using 4# versioning like major.minor[.build[.revision]]. Ref here
While, Windows Installer still suggests 3# versioning like major.minor.build. Ref here
With the difference in versioning in two systems. It is not straight to map .Net assemblies version to...
I have a stored procedure that executes much faster from Sql Server Management Studio (2 seconds) than when run with System.Data.SqlClient.SqlCommand (times out after 2 minutes).
What could be the reason for this?
Details:
In Sql Server Management Studio this runs in 2 seconds (on production database):
EXEC sp_Stat
@DepartmentID...