Click here to Skip to main content
15,914,165 members
Home / Discussions / C#
   

C#

 
QuestionReading xml Pin
praveenkumar palla20-Sep-07 20:53
praveenkumar palla20-Sep-07 20:53 
AnswerRe: Reading xml Pin
Scott Dorman20-Sep-07 20:55
professionalScott Dorman20-Sep-07 20:55 
GeneralRe: Reading xml Pin
praveenkumar palla21-Sep-07 3:50
praveenkumar palla21-Sep-07 3:50 
GeneralRe: Reading xml Pin
praveenkumar palla21-Sep-07 3:52
praveenkumar palla21-Sep-07 3:52 
GeneralRe: Reading xml Pin
Scott Dorman21-Sep-07 4:25
professionalScott Dorman21-Sep-07 4:25 
QuestionReplace Word in file with other. File Handling. Pin
Bhavesh Bagadiya20-Sep-07 20:47
Bhavesh Bagadiya20-Sep-07 20:47 
AnswerRe: Replace Word in file with other. File Handling. Pin
JoeSharp20-Sep-07 21:11
JoeSharp20-Sep-07 21:11 
GeneralRe: Replace Word in file with other. File Handling. Pin
Bhavesh Bagadiya20-Sep-07 21:17
Bhavesh Bagadiya20-Sep-07 21:17 
GeneralRe: Replace Word in file with other. File Handling. Pin
Giorgi Dalakishvili20-Sep-07 21:19
mentorGiorgi Dalakishvili20-Sep-07 21:19 
QuestionC#,How to retrieve the image in sql to image control Pin
Ursrathi20-Sep-07 20:41
Ursrathi20-Sep-07 20:41 
AnswerRe: C#,How to retrieve the image in sql to image control Pin
Giorgi Dalakishvili20-Sep-07 20:51
mentorGiorgi Dalakishvili20-Sep-07 20:51 
QuestionPlease help me how to create a simple RadioButton Column in DataGridView. Pin
pcphuc20-Sep-07 20:28
pcphuc20-Sep-07 20:28 
AnswerRe: Please help me how to create a simple RadioButton Column in DataGridView. Pin
Sathesh Sakthivel20-Sep-07 21:14
Sathesh Sakthivel20-Sep-07 21:14 
GeneralRe: Please help me how to create a simple RadioButton Column in DataGridView. Pin
pcphuc20-Sep-07 21:19
pcphuc20-Sep-07 21:19 
GeneralRe: Please help me how to create a simple RadioButton Column in DataGridView. Pin
Dave Kreskowiak21-Sep-07 5:46
mveDave Kreskowiak21-Sep-07 5:46 
GeneralRe: Please help me how to create a simple RadioButton Column in DataGridView. Pin
rashidpervaiz0821-Sep-07 19:59
rashidpervaiz0821-Sep-07 19:59 
GeneralRe: Please help me how to create a simple RadioButton Column in DataGridView. Pin
pcphuc21-Sep-07 22:17
pcphuc21-Sep-07 22:17 
QuestionCalling Base Class From GrandChild class Pin
N a v a n e e t h20-Sep-07 19:36
N a v a n e e t h20-Sep-07 19:36 
Please see the following code snippet

class BaseClass
{
	public virtual void SampleFun()
	{
		Console.WriteLine("In base class SampleFun");
	}
}

class ChildClass : BaseClass
{
	public override void SampleFun()
	{
		Console.WriteLine("In child class samplefun");
	}
}

class GrandChild : ChildClass
{
	public GrandChild()
	{
		Console.WriteLine("Grandchild contructor");
		base.SampleFun();
	}
}


From grandchild class I am able to call the Child classes overrided method. But how to call BaseClass original method from GrandChild class ? When I try to call this.SampleFun(), VS editor shows two overloaded method. But I am able to call only ChildClass SampleFun() method. Is there any way to call BaseClass SampleFun() method.


AnswerRe: Calling Base Class From GrandChild class Pin
Christian Graus20-Sep-07 20:40
protectorChristian Graus20-Sep-07 20:40 
GeneralRe: Calling Base Class From GrandChild class Pin
N a v a n e e t h20-Sep-07 21:20
N a v a n e e t h20-Sep-07 21:20 
GeneralRe: Calling Base Class From GrandChild class Pin
Christian Graus20-Sep-07 21:54
protectorChristian Graus20-Sep-07 21:54 
GeneralRe: Calling Base Class From GrandChild class Pin
N a v a n e e t h20-Sep-07 22:33
N a v a n e e t h20-Sep-07 22:33 
AnswerRe: Calling Base Class From GrandChild class Pin
Guffa20-Sep-07 22:58
Guffa20-Sep-07 22:58 
AnswerRe: Calling Base Class From GrandChild class Pin
Guffa20-Sep-07 22:50
Guffa20-Sep-07 22:50 
GeneralRe: Calling Base Class From GrandChild class Pin
N a v a n e e t h20-Sep-07 23:33
N a v a n e e t h20-Sep-07 23: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.