Click here to Skip to main content
15,888,610 members
Home / Discussions / C#
   

C#

 
GeneralRe: update Dictionary with new KeyValuePair set Pin
igalep13227-Mar-10 5:07
igalep13227-Mar-10 5:07 
GeneralRe: update Dictionary with new KeyValuePair set Pin
Dan Mos27-Mar-10 5:32
Dan Mos27-Mar-10 5:32 
GeneralRe: update Dictionary with new KeyValuePair set Pin
igalep13227-Mar-10 5:35
igalep13227-Mar-10 5:35 
GeneralRe: update Dictionary with new KeyValuePair set Pin
Dan Mos27-Mar-10 5:42
Dan Mos27-Mar-10 5:42 
GeneralRe: update Dictionary with new KeyValuePair set Pin
igalep13227-Mar-10 5:45
igalep13227-Mar-10 5:45 
AnswerRe: update Dictionary with new KeyValuePair set Pin
Daniel Grunwald27-Mar-10 7:18
Daniel Grunwald27-Mar-10 7:18 
GeneralRe: update Dictionary with new KeyValuePair set Pin
PIEBALDconsult27-Mar-10 17:23
mvePIEBALDconsult27-Mar-10 17:23 
QuestionHow can i know from which interface the method is calling? Pin
Satish - Developer27-Mar-10 2:46
Satish - Developer27-Mar-10 2:46 
namespace MYConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {

            int x = 3;
            int y = 2;

            x= (x==y++)?x+y:x-y;

            A ObjA = new A();
            ObjA.M1();
        }
    }

    interface Inf1
    {
         void M1();
         void M2();
    }

    interface Inf2
    {
         void M1();
    }

    class A: Inf1,Inf2
    {
        public void M1()
        {
            Console.Write("test");
        }

        public void M2()
        {
            Console.Write("test2");
        }
    }
}


From the above code ..how can i know from which interface the method M1() is overriding in Class A. Please let me know..if this is the case where tow interfaces contains same method..
G. Satish

AnswerRe: How can i know from which interface the method is calling? Pin
Nuri Ismail27-Mar-10 3:03
Nuri Ismail27-Mar-10 3:03 
AnswerRe: How can i know from which interface the method is calling? Pin
AspDotNetDev27-Mar-10 3:13
protectorAspDotNetDev27-Mar-10 3:13 
QuestionHow to write the design editor? Pin
yu-jian27-Mar-10 1:34
yu-jian27-Mar-10 1:34 
AnswerRe: How to write the design editor? Pin
yu-jian28-Mar-10 3:34
yu-jian28-Mar-10 3:34 
GeneralRe: How to write the design editor? Pin
OriginalGriff28-Mar-10 4:10
mveOriginalGriff28-Mar-10 4:10 
QuestionA question on SqlCommand.CommandText Pin
Dewald26-Mar-10 23:01
Dewald26-Mar-10 23:01 
AnswerRe: A question on SqlCommand.CommandText [modified] Pin
Dan Mos27-Mar-10 0:24
Dan Mos27-Mar-10 0:24 
AnswerRe: A question on SqlCommand.CommandText Pin
#realJSOP27-Mar-10 1:29
mve#realJSOP27-Mar-10 1:29 
AnswerRe: A question on SqlCommand.CommandText Pin
PIEBALDconsult27-Mar-10 4:28
mvePIEBALDconsult27-Mar-10 4:28 
QuestionCompress a Folder using GZipStream Pin
anishkannan26-Mar-10 21:57
anishkannan26-Mar-10 21:57 
AnswerRe: Compress a Folder using GZipStream Pin
Richard MacCutchan26-Mar-10 23:05
mveRichard MacCutchan26-Mar-10 23:05 
GeneralRe: Compress a Folder using GZipStream Pin
AspDotNetDev26-Mar-10 23:23
protectorAspDotNetDev26-Mar-10 23:23 
GeneralRe: Compress a Folder using GZipStream Pin
Richard MacCutchan26-Mar-10 23:44
mveRichard MacCutchan26-Mar-10 23:44 
GeneralRe: Compress a Folder using GZipStream Pin
AspDotNetDev26-Mar-10 23:53
protectorAspDotNetDev26-Mar-10 23:53 
GeneralRe: Compress a Folder using GZipStream Pin
Richard MacCutchan27-Mar-10 3:19
mveRichard MacCutchan27-Mar-10 3:19 
GeneralRe: Compress a Folder using GZipStream Pin
AspDotNetDev27-Mar-10 3:27
protectorAspDotNetDev27-Mar-10 3:27 
GeneralRe: Compress a Folder using GZipStream Pin
Richard MacCutchan27-Mar-10 3:46
mveRichard MacCutchan27-Mar-10 3:46 

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.