The .NET framework is a software framework designed mainly for the Microsoft Windows operating system. It includes an implementation of the Base Class Library, Common Language Runtime (commonly referred to as CLI) and Dynamic Language Runtime. It supports many programming languages, including C#, ...

learn more… | top users | synonyms (3)

0
votes
2answers
15 views

Repeater ItemTemplate and DataBinding

I have some .ascx and its code behind. I am using Repeater with my ItemTemplate there. So the question is - in which moment this template is assigned to my repeater? Regards, Dmirty.
0
votes
0answers
3 views

Silverlight5 CAPICOM

I can't understand why next code not working (using Silverlight5), please, advice how it can be fixed. dynamic signer = AutomationFactory.CreateObject("CAPICOM.Signer"); dynamic cert = ...
0
votes
0answers
6 views

MultiDomain attribute don't work?

I created sample test solution for testing memory usage optimization in .NET. There is two project: class lib ("BigLib") with huge static method in form: public static double Big() { ...
0
votes
1answer
36 views

Is it intelligent to redline the CPU through Task.Run

I know its bad for the Performance of my application to create too many threads (threadstarvation) but I'm not sure how this translates to the Async/Await functionalities. I understand Task.Run() uses ...
0
votes
0answers
10 views

Fluent nhibernate configure explicit left/inner join for association

First, some code to explain my config: public class OrdersSessionFactoryCreator : ISessionFactoryCreator { public NHibernate.ISessionFactory Create() { var ret = ...
1
vote
1answer
10 views

IronPython calls TryGetMember instead of TryInvokeMember

i'm trying to hand over a Dynamic object to Ironpython, but it seems Ironpython is not calling TryInvokeMember. Instead it calls TryGetMember and gives an Error that it cant call the result. I have ...
2
votes
3answers
47 views

How do you get the Default Users folder (e.g. c:\users\Default)

I've looked at the Environment.GetFolderPath method and the System.Environment.SpecialFolder enum but I couldn't see anything that returns the path of the Default Users folder. Can someone please ...
-1
votes
0answers
20 views

How the dot net application working (life cycle)?

I am new to dot net technologies.I meet this question in one interview.i know the asp .net life cycle but how to answer this question " How the dot net application working or life cycle (general life ...
0
votes
1answer
10 views

Access violation on reading location 0x33313032. when build the project under x86 platform the ame works fine under 64bit platform

Im getting this error when i run my dualcore project with build set to x86 platform on vs2010 Unhandled exception at 0x6711b1a5 in dualcore.exe: 0xC0000005: Access violation reading location ...
1
vote
5answers
38 views

Format strings in vb.net

Is there anything like formatting a string to the format specified? Eg: If the string value is "05/05/2013 05:06:23" If the formatting type is "d" So if we pass both the values, the output ...
1
vote
1answer
20 views

Thread is being aborted in asp.net application

I have configured my asp .net website in local IIS , if i made any changes in app_Code file then web site is compiled and some time "Thread is being aborted" error is raised . I can't find reason or ...
0
votes
1answer
15 views

LINQ - loading data from tables with circular references

I have the below tables where the StationAvailableMoves.StationID and StationAvailableMoves.AvailableNextStationID both have relationships on the Station.ID column. I am using this to control a ...
0
votes
0answers
37 views

How do I get all the types used in a class

I am trying to find out reference to all the classes used in a class. For example, I have the following class class Class1 : Class2 { public Class3 Prop1{get;set;} public Class4 ...
2
votes
3answers
49 views

Calling Known Property from Unknown Class

I have a BaseClass from which I have derived multiple other Classes using Inheritance. Elsewhere I want to be able to retrieve Properties from anyone of these inherited classes even though the type of ...
0
votes
1answer
14 views

Base class type of the derived classes, Generics - .net

I read about contra and covariance problem and it looks like my code falls into that category. I just want to confirm whether i am doing something else wrong. I am using VS 2005 (company policy..) I ...

1 2 3 4 5 10459
15 30 50 per page