Click here to Skip to main content
15,926,596 members
Home / Discussions / C#
   

C#

 
QuestionFirst cold startup time Pin
Super Lloyd17-Aug-06 2:45
Super Lloyd17-Aug-06 2:45 
AnswerRe: First cold startup time Pin
V.17-Aug-06 4:50
professionalV.17-Aug-06 4:50 
GeneralRe: First cold startup time Pin
Super Lloyd17-Aug-06 4:54
Super Lloyd17-Aug-06 4:54 
GeneralRe: First cold startup time Pin
Dan Neely17-Aug-06 5:54
Dan Neely17-Aug-06 5:54 
GeneralRe: First cold startup time Pin
Super Lloyd17-Aug-06 6:07
Super Lloyd17-Aug-06 6:07 
QuestionCOM interop to communicate with Word Pin
TAREQ F ABUZUHRI17-Aug-06 2:42
TAREQ F ABUZUHRI17-Aug-06 2:42 
AnswerRe: COM interop to communicate with Word Pin
Michael P Butler17-Aug-06 3:16
Michael P Butler17-Aug-06 3:16 
QuestionEigen vector Pin
vickyProgrammer17-Aug-06 2:21
vickyProgrammer17-Aug-06 2:21 
AnswerRe: Eigen vector Pin
Super Lloyd17-Aug-06 2:40
Super Lloyd17-Aug-06 2:40 
QuestionIs there any way ... Pin
mostafa_h17-Aug-06 1:57
mostafa_h17-Aug-06 1:57 
AnswerRe: Is there any way ... Pin
lmoelleb17-Aug-06 2:13
lmoelleb17-Aug-06 2:13 
GeneralRe: Is there any way ... [modified] Pin
mostafa_h17-Aug-06 2:21
mostafa_h17-Aug-06 2:21 
GeneralRe: Is there any way ... Pin
lmoelleb17-Aug-06 3:23
lmoelleb17-Aug-06 3:23 
GeneralRe: Is there any way ... Pin
mostafa_h17-Aug-06 3:35
mostafa_h17-Aug-06 3:35 
GeneralRe: Is there any way ... Pin
lmoelleb17-Aug-06 7:05
lmoelleb17-Aug-06 7:05 
GeneralRe: Is there any way ... Pin
mostafa_h17-Aug-06 7:42
mostafa_h17-Aug-06 7:42 
QuestionAccessing Visual Source Safe or VSS using C# Pin
Sriramv8217-Aug-06 1:53
Sriramv8217-Aug-06 1:53 
AnswerRe: Accessing Visual Source Safe or VSS using C# Pin
lmoelleb17-Aug-06 2:14
lmoelleb17-Aug-06 2:14 
AnswerRe: Accessing Visual Source Safe or VSS using C# Pin
Kevin McFarlane17-Aug-06 4:55
Kevin McFarlane17-Aug-06 4:55 
GeneralRe: Accessing Visual Source Safe or VSS using C# Pin
Sriramv8217-Aug-06 20:19
Sriramv8217-Aug-06 20:19 
GeneralRe: Accessing Visual Source Safe or VSS using C# Pin
Kevin McFarlane18-Aug-06 0:10
Kevin McFarlane18-Aug-06 0:10 
GeneralRe: Accessing Visual Source Safe or VSS using C# Pin
Sriramv8218-Aug-06 1:08
Sriramv8218-Aug-06 1:08 
GeneralRe: Accessing Visual Source Safe or VSS using C# Pin
KPmylsamy20-Jan-09 20:12
KPmylsamy20-Jan-09 20:12 
QuestionChange inheritance relationship dynamically using reflection Pin
Kevin McFarlane17-Aug-06 1:36
Kevin McFarlane17-Aug-06 1:36 
I have some code which looks like this:

// This class should be the only class that needs changing between Enforma & Enforma-NX
public class EnformaCubeUser : EnformaUser
// public class EnformaCubeUser : EnformaPassport
{
    EnformaCubeUser(System.Security.Principal.IPrincipal User)
    {
        base.New(User.Identity.Name);
        //base.New(User.Identity);
    }
}

Given that I know whether I am enforma or enforma-nx, as described in the initial comment, is there a way of changing the inheritance relationship of the EnformaCubeUser class according to the commented out lines using some devious reflection technique? (I am not permitted to modify the EnformaUser and EnformaPassport classes.)

Kevin

AnswerRe: Change inheritance relationship dynamically using reflection Pin
Kevin McFarlane17-Aug-06 2:40
Kevin McFarlane17-Aug-06 2:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.