Click here to Skip to main content
15,902,939 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to get the recognized phoneme in SAPI Pin
Xelalem15-Nov-09 6:00
Xelalem15-Nov-09 6:00 
GeneralRe: how to get the recognized phoneme in SAPI Pin
Elgimas19-Nov-09 15:52
Elgimas19-Nov-09 15:52 
QuestionMultiple inheritance.. Pin
kumar sanghvi12-Nov-09 7:33
kumar sanghvi12-Nov-09 7:33 
AnswerRe: Multiple inheritance.. Pin
Abhishek Sur12-Nov-09 8:03
professionalAbhishek Sur12-Nov-09 8:03 
AnswerRe: Multiple inheritance.. Pin
Christian Graus12-Nov-09 9:24
protectorChristian Graus12-Nov-09 9:24 
AnswerRe: Multiple inheritance.. Pin
PIEBALDconsult12-Nov-09 9:37
mvePIEBALDconsult12-Nov-09 9:37 
AnswerRe: Multiple inheritance.. Pin
Shameel12-Nov-09 22:42
professionalShameel12-Nov-09 22:42 
GeneralRe: Multiple inheritance.. Pin
Paulo Zemek13-Nov-09 2:02
Paulo Zemek13-Nov-09 2:02 
Yes... always the same solution "the language don't do it, but you can, doing a lot of code, achieve the same result."

For example, how can you implement "multiple inheritance":
Instead of creating class A and B, which are the base classes of C
(C: A, B) you create IA and IB.
There are the classes A and B, but you only reference them as IA and IB.

So, you create class C: IA, IB
Where all methods of IA call A methods and IB call B methods.

If the methods are non-virtual, you can also create A Extensions and B extensions, that will add methods to IA and IB.

So you will:
Have all virtual methods of A acessible to C using IA interface.
Have all virtual methods of B acessible to C using IB interface.
Have all non-virtual methods that will be acessible in A and B using the A and B extensions methods.
Have all C exclusive methods.

So, typing "c." will list all the methods that will be available using multiple inheritance, but the work to do it will in many cases force you to search for another solution.
Questionhow to find list of all the url tabs of IE presently running (multiple tabs) its name as application for each find cpu usage? Pin
namratabuddhadev12-Nov-09 6:58
namratabuddhadev12-Nov-09 6:58 
AnswerRe: how to find list of all the url tabs of IE presently running (multiple tabs) its name as application for each find cpu usage? Pin
The Man from U.N.C.L.E.12-Nov-09 9:43
The Man from U.N.C.L.E.12-Nov-09 9:43 
AnswerRe: how to find list of all the url tabs of IE presently running (multiple tabs) its name as application for each find cpu usage? Pin
Shameel12-Nov-09 22:46
professionalShameel12-Nov-09 22:46 
QuestionUrlEncode Problem Pin
snouto12-Nov-09 6:55
snouto12-Nov-09 6:55 
AnswerRe: UrlEncode Problem Pin
Abhishek Sur12-Nov-09 7:00
professionalAbhishek Sur12-Nov-09 7:00 
AnswerRe: UrlEncode Problem Pin
Shameel12-Nov-09 7:30
professionalShameel12-Nov-09 7:30 
AnswerRe: UrlEncode Problem Pin
Luc Pattyn12-Nov-09 7:39
sitebuilderLuc Pattyn12-Nov-09 7:39 
QuestionHow to capture screenshot of a web site in unattended mode? Pin
kskarun12-Nov-09 6:03
kskarun12-Nov-09 6:03 
AnswerRe: How to capture screenshot of a web site in unattended mode? Pin
Abhishek Sur12-Nov-09 6:57
professionalAbhishek Sur12-Nov-09 6:57 
AnswerRe: How to capture screenshot of a web site in unattended mode? Pin
Saksida Bojan12-Nov-09 7:36
Saksida Bojan12-Nov-09 7:36 
GeneralRe: How to capture screenshot of a web site in unattended mode? Pin
Abhishek Sur12-Nov-09 8:00
professionalAbhishek Sur12-Nov-09 8:00 
Questionc# vs c++ Pin
kumar sanghvi12-Nov-09 5:26
kumar sanghvi12-Nov-09 5:26 
AnswerRe: c# vs c++ Pin
The Man from U.N.C.L.E.12-Nov-09 5:29
The Man from U.N.C.L.E.12-Nov-09 5:29 
AnswerRe: c# vs c++ Pin
Not Active12-Nov-09 5:30
mentorNot Active12-Nov-09 5:30 
GeneralRe: c# vs c++ Pin
The Man from U.N.C.L.E.12-Nov-09 5:32
The Man from U.N.C.L.E.12-Nov-09 5:32 
GeneralRe: c# vs c++ Pin
Blubbo12-Nov-09 8:30
Blubbo12-Nov-09 8:30 
Questiona french question Pin
boudj12-Nov-09 5:01
boudj12-Nov-09 5:01 

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.