Click here to Skip to main content
15,885,546 members
Home / Discussions / C#
   

C#

 
QuestionHow to Update my System Configutrator application on client machine Pin
wasimsharp4-Jul-08 23:01
wasimsharp4-Jul-08 23:01 
QuestionGrab video from tv tuner Pin
Harvey Saayman4-Jul-08 21:38
Harvey Saayman4-Jul-08 21:38 
AnswerRe: Grab video from tv tuner Pin
Christian Graus5-Jul-08 1:17
protectorChristian Graus5-Jul-08 1:17 
GeneralRe: Grab video from tv tuner Pin
Harvey Saayman6-Jul-08 7:31
Harvey Saayman6-Jul-08 7:31 
QuestionSound Recorder in Visual Studio Pin
paresh_sarjani4-Jul-08 21:21
paresh_sarjani4-Jul-08 21:21 
AnswerRe: Sound Recorder in Visual Studio Pin
Nader Elshehabi5-Jul-08 1:16
Nader Elshehabi5-Jul-08 1:16 
QuestionWhat happens if you inherit multiple interfaces and they have conflicting method names? Pin
Pankaj Garg4-Jul-08 21:08
Pankaj Garg4-Jul-08 21:08 
AnswerRe: What happens if you inherit multiple interfaces and they have conflicting method names? Pin
Nader Elshehabi5-Jul-08 0:03
Nader Elshehabi5-Jul-08 0:03 
An interface is like a contract. It only says that for your to be a member of that conract you must have a minimum set of members -Methods & properties-. So a.b() & c.b() are only declarations of a method called b() & they have nothing to do with the implementation. The class is concerned with defining how the method will work. Let's take a clearer example

Interface Author
{
     public void WriteAnArticle()
}

Interface Editor
{
     public void WriteAnArticle()
}

Class Me : Author, Editor
{
     public void WriteAnArticle()
     {
          //...Writing the article my way
     }
}


So whether you are an author or an editor you must write an article, but how you write the article is up to you.

RegardsRose | [Rose]

AnswerRe: What happens if you inherit multiple interfaces and they have conflicting method names? Pin
Guffa5-Jul-08 3:43
Guffa5-Jul-08 3:43 
QuestionHow to get Image from Frame in mshtml. Pin
banker_kiran4-Jul-08 20:04
banker_kiran4-Jul-08 20:04 
AnswerRe: How to get Image from Frame in mshtml. Pin
banker_kiran8-Jul-08 18:47
banker_kiran8-Jul-08 18:47 
QuestionStop Autoplay of mshtml.HTMLObjectElement Pin
banker_kiran4-Jul-08 19:31
banker_kiran4-Jul-08 19:31 
QuestionPrinting on a Pre-Printed Form Pin
Ian Uy4-Jul-08 18:20
Ian Uy4-Jul-08 18:20 
AnswerRe: Printing on a Pre-Printed Form Pin
Nader Elshehabi4-Jul-08 23:54
Nader Elshehabi4-Jul-08 23:54 
GeneralRe: Printing on a Pre-Printed Form Pin
Ian Uy5-Jul-08 3:32
Ian Uy5-Jul-08 3:32 
QuestionHow much memory do uninitialized array take up? Pin
gigahertz2054-Jul-08 14:48
gigahertz2054-Jul-08 14:48 
AnswerRe: How much memory do uninitialized array take up? [modified] Pin
Luc Pattyn4-Jul-08 15:13
sitebuilderLuc Pattyn4-Jul-08 15:13 
GeneralRe: How much memory do uninitialized array take up? Pin
N a v a n e e t h4-Jul-08 16:27
N a v a n e e t h4-Jul-08 16:27 
GeneralRe: How much memory do uninitialized array take up? Pin
Luc Pattyn4-Jul-08 16:34
sitebuilderLuc Pattyn4-Jul-08 16:34 
GeneralRe: How much memory do uninitialized array take up? Pin
N a v a n e e t h4-Jul-08 16:42
N a v a n e e t h4-Jul-08 16:42 
AnswerRe: How much memory do uninitialized array take up? Pin
N a v a n e e t h4-Jul-08 16:35
N a v a n e e t h4-Jul-08 16:35 
GeneralRe: How much memory do uninitialized array take up? Pin
Luc Pattyn4-Jul-08 16:44
sitebuilderLuc Pattyn4-Jul-08 16:44 
GeneralRe: How much memory do uninitialized array take up? Pin
N a v a n e e t h4-Jul-08 16:47
N a v a n e e t h4-Jul-08 16:47 
GeneralRe: How much memory do uninitialized array take up? Pin
Guffa5-Jul-08 4:00
Guffa5-Jul-08 4:00 
GeneralRe: How much memory do uninitialized array take up? Pin
N a v a n e e t h5-Jul-08 16:33
N a v a n e e t h5-Jul-08 16:33 

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.