Click here to Skip to main content
16,006,065 members
Home / Discussions / C#
   

C#

 
Generalretrive single fieald form database Pin
webhay3-Nov-04 3:12
webhay3-Nov-04 3:12 
GeneralRe: retrive single fieald form database Pin
Looney Tunezez3-Nov-04 7:19
Looney Tunezez3-Nov-04 7:19 
GeneralRe: retrive single fieald form database Pin
cnet20083-Nov-04 16:06
cnet20083-Nov-04 16:06 
GeneralRe: retrive single fieald form database Pin
turbochimp5-Nov-04 9:12
turbochimp5-Nov-04 9:12 
Generalinheritance from an interface and base class problem Pin
impeham3-Nov-04 2:13
impeham3-Nov-04 2:13 
GeneralRe: inheritance from an interface and base class problem Pin
Daniel Turini3-Nov-04 2:51
Daniel Turini3-Nov-04 2:51 
GeneralRe: inheritance from an interface and base class problem Pin
impeham3-Nov-04 4:03
impeham3-Nov-04 4:03 
GeneralRe: inheritance from an interface and base class problem Pin
sreejith ss nair3-Nov-04 3:06
sreejith ss nair3-Nov-04 3:06 
<br />
using System;<br />
namespace ConsoleApp<br />
{<br />
	public interface IMe<br />
	{<br />
	void Disp();<br />
	}<br />
	abstract class BaseCls<br />
	{<br />
		public virtual void Display()<br />
		{<br />
<br />
		}<br />
	}<br />
	class B:BaseCls,IMe<br />
	{<br />
		public void Disp()<br />
		{<br />
			Console.WriteLine("i am from interface");<br />
		}<br />
		public override void  Display()<br />
		{<br />
         this.Disp();<br />
		}<br />
	}<br />
	class Implimet<br />
	{<br />
		static void Main()<br />
		{<br />
          B Bobj=new B();<br />
		  Bobj.Disp();<br />
		  //This method consumes your Interface abstract member function.<br />
          Bobj.Display();<br />
		}<br />
	}<br />
}<br />
<br />


Sreejith Nair
[ My Articles ]
QuestionUPNP anyone? Pin
Assaad Chalhoub3-Nov-04 1:42
Assaad Chalhoub3-Nov-04 1:42 
AnswerRe: UPNP anyone? Pin
sreejith ss nair3-Nov-04 3:10
sreejith ss nair3-Nov-04 3:10 
QuestionHow to use &quot;RasGetProjectionInfo&quot; in C#??? Pin
hailei3-Nov-04 0:55
hailei3-Nov-04 0:55 
AnswerRe: How to use &quot;RasGetProjectionInfo&quot; in C#??? Pin
Alex Korchemniy3-Nov-04 8:08
Alex Korchemniy3-Nov-04 8:08 
GeneralRe: How to use &quot;RasGetProjectionInfo&quot; in C#??? Pin
hailei3-Nov-04 14:27
hailei3-Nov-04 14:27 
GeneralRe: How to use &quot;RasGetProjectionInfo&quot; in C#??? Pin
Alex Korchemniy3-Nov-04 15:32
Alex Korchemniy3-Nov-04 15:32 
AnswerRe: How to use &quot;RasGetProjectionInfo&quot; in C#??? Pin
Marcco13-Jan-05 5:57
Marcco13-Jan-05 5:57 
AnswerRe: How to use &quot;RasGetProjectionInfo&quot; in C#??? Pin
Marcco14-Jan-05 4:32
Marcco14-Jan-05 4:32 
GeneralSharePoint and Active Directory Pin
robmekong3-Nov-04 0:24
robmekong3-Nov-04 0:24 
GeneralGrid problem Pin
babeng3-Nov-04 0:17
babeng3-Nov-04 0:17 
GeneralRe: Grid problem Pin
Alex Korchemniy3-Nov-04 7:58
Alex Korchemniy3-Nov-04 7:58 
GeneralRe: Grid problem Pin
Huseyin Altindag4-Nov-04 1:28
Huseyin Altindag4-Nov-04 1:28 
Generaldatagrid problem Pin
babeng3-Nov-04 0:14
babeng3-Nov-04 0:14 
GeneralMDI headscratcher Pin
m0nkeybot2-Nov-04 23:35
m0nkeybot2-Nov-04 23:35 
GeneralDate Time Picker Control Pin
manoj_kr742-Nov-04 23:31
manoj_kr742-Nov-04 23:31 
GeneralRe: Date Time Picker Control Pin
Alex Korchemniy3-Nov-04 7:50
Alex Korchemniy3-Nov-04 7:50 
Generalclass problem!! Pin
xiaowenjie2-Nov-04 21:56
xiaowenjie2-Nov-04 21:56 

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.