Click here to Skip to main content
15,906,285 members
Home / Discussions / C#
   

C#

 
AnswerRe: Which is the best tool for .net obfuscation ? Pin
Som Shekhar13-May-10 21:50
Som Shekhar13-May-10 21:50 
AnswerRe: Which is the best tool for .net obfuscation ? Pin
#realJSOP14-May-10 1:39
professional#realJSOP14-May-10 1:39 
AnswerRe: Which is the best tool for .net obfuscation ? Pin
harold aptroot14-May-10 2:12
harold aptroot14-May-10 2:12 
AnswerRe: Which is the best tool for .net obfuscation ? Pin
PIEBALDconsult14-May-10 4:06
mvePIEBALDconsult14-May-10 4:06 
GeneralRe: Which is the best tool for .net obfuscation ? Pin
OriginalGriff14-May-10 4:11
mveOriginalGriff14-May-10 4:11 
GeneralRe: Which is the best tool for .net obfuscation ? Pin
dan!sh 14-May-10 4:21
professional dan!sh 14-May-10 4:21 
QuestionHOW TO FIX THIS EVERYTIME I ADD DATA IN MY DATA TABLE THE LASTROW AND FIRSTROW ARE THES SAME [modified] Pin
crisjala13-May-10 20:27
crisjala13-May-10 20:27 
AnswerRe: HOW TO FIX THIS EVERYTIME I ADD DATA IN MY DATA TABLE THE LASTROW AND FIRSTROW ARE THES SAME Pin
OriginalGriff13-May-10 21:41
mveOriginalGriff13-May-10 21:41 
GeneralRe: HOW TO FIX THIS EVERYTIME I ADD DATA IN MY DATA TABLE THE LASTROW AND FIRSTROW ARE THES SAME Pin
DaveyM6914-May-10 0:56
professionalDaveyM6914-May-10 0:56 
GeneralRe: HOW TO FIX THIS EVERYTIME I ADD DATA IN MY DATA TABLE THE LASTROW AND FIRSTROW ARE THES SAME Pin
OriginalGriff14-May-10 0:59
mveOriginalGriff14-May-10 0:59 
GeneralRe: HOW TO FIX THIS EVERYTIME I ADD DATA IN MY DATA TABLE THE LASTROW AND FIRSTROW ARE THES SAME Pin
Not Active14-May-10 1:20
mentorNot Active14-May-10 1:20 
AnswerRe: HOW TO FIX THIS EVERYTIME I ADD DATA IN MY DATA TABLE THE LASTROW AND FIRSTROW ARE THES SAME Pin
#realJSOP14-May-10 1:36
professional#realJSOP14-May-10 1:36 
AnswerRe: HOW TO FIX THIS EVERYTIME I ADD DATA IN MY DATA TABLE THE LASTROW AND FIRSTROW ARE THES SAME Pin
Kalvin @ Work14-May-10 9:27
Kalvin @ Work14-May-10 9:27 
Questioncontrol border settings Pin
xilefxilef13-May-10 13:36
xilefxilef13-May-10 13:36 
AnswerRe: control border settings Pin
Henry Minute14-May-10 1:58
Henry Minute14-May-10 1:58 
QuestionFTP via proxy Pin
Gavs4313-May-10 9:46
Gavs4313-May-10 9:46 
AnswerRe: FTP via proxy Pin
Luc Pattyn13-May-10 10:09
sitebuilderLuc Pattyn13-May-10 10:09 
QuestionCreate an object of an inherited class Pin
popchecker13-May-10 7:40
popchecker13-May-10 7:40 
Hi All,

I am developing a C# library. In that library there is an abstract method in an abstract class which let the users to implement it. Now I want to call that method in some other parts of my library. My problem is that the library aware only about the abstract class not about the class which user implemented. This is something I want to implement.

C#
abstract class MyBase
{
    abstract void DoSomething();
}

class AnotherPartOfLibrary
{
    public void AnotherFunction()
    {
        //here I want to call MyBase.DoSomething()
    }
}

/* User Implementation of my library */
class UserImplementation : MyBase
{
    public void DoSomething(){}
}

All I need to let the user to extent my library and I want to call these extended functionalities in some parts of library. One method I found that to force the user for an entry of user class name in configuration file. So that I can create an instance of user class using reflection. But is there any other methods to do this?

Thanks & Regards,
Thomas
AnswerRe: Create an object of an inherited class Pin
T M Gray13-May-10 8:01
T M Gray13-May-10 8:01 
GeneralRe: Create an object of an inherited class Pin
popchecker13-May-10 15:15
popchecker13-May-10 15:15 
AnswerRe: Create an object of an inherited class Pin
William Winner13-May-10 8:05
William Winner13-May-10 8:05 
GeneralRe: Create an object of an inherited class Pin
popchecker13-May-10 15:31
popchecker13-May-10 15:31 
GeneralRe: Create an object of an inherited class Pin
DaveyM6913-May-10 22:51
professionalDaveyM6913-May-10 22:51 
AnswerRe: Create an object of an inherited class Pin
DaveyM6913-May-10 9:22
professionalDaveyM6913-May-10 9:22 
QuestionHow to get the row number from a detail view [modified] Pin
gmhanna13-May-10 5:02
gmhanna13-May-10 5:02 

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.