Click here to Skip to main content
16,005,121 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Visual Source Safe alternatives Pin
Mark J. Miller8-Jan-07 11:15
Mark J. Miller8-Jan-07 11:15 
GeneralRe: Visual Source Safe alternatives Pin
Colin Angus Mackay8-Jan-07 13:00
Colin Angus Mackay8-Jan-07 13:00 
AnswerRe: Can I build an UI using .Net framework Pin
Christian Graus7-Jan-07 20:08
protectorChristian Graus7-Jan-07 20:08 
AnswerRe: .NET application design/development vs. Terminal server based runs. Pin
WillemM7-Jan-07 7:58
WillemM7-Jan-07 7:58 
QuestionShadowing?? Pin
Rahithi6-Jan-07 18:05
Rahithi6-Jan-07 18:05 
AnswerRe: Shadowing?? Pin
WillemM7-Jan-07 8:02
WillemM7-Jan-07 8:02 
GeneralRe: Shadowing?? Pin
Rahithi8-Jan-07 6:50
Rahithi8-Jan-07 6:50 
AnswerRe: Shadowing?? Pin
karam chandrabose7-Jan-07 19:03
karam chandrabose7-Jan-07 19:03 
Overloading can occur with in the same class too, for eg:
<br />
//Example for overloading<br />
public int addnumbers(int a, int b)<br />
{<br />
    return a+b;<br />
}<br />
public int addnumbers(int a, int b, int c)<br />
{<br />
    return a+b+c;<br />
}<br />


Method Hiding can happen only when inheritance comes to picture
<br />
public class Maths<br />
{<br />
   public Maths()<br />
    {<br />
     //.Ctor<br />
    }<br />
   public int addnumbers(int a, int b)<br />
    {<br />
      return a+b;<br />
    }<br />
}<br />
public class TwoMaths : Maths<br />
{<br />
   public TwoMaths()<br />
    {<br />
     //.Ctor<br />
    }<br />
<br />
// This method hides the base class's  method<br />
// if you create a object for TwoMaths class, the base class's<br />
// addnumber method cannot be called unless until you explicitly<br />
//cast TwoMaths' object in to Maths object<br />
   public int addnumbers(int a, int b)<br />
    {<br />
      return a+b;<br />
    }<br />
<br />
}<br />

GeneralRe: Shadowing?? Pin
Rahithi8-Jan-07 6:53
Rahithi8-Jan-07 6:53 
QuestionClick Once Apps and Accessing File System Pin
Yadrif6-Jan-07 15:24
Yadrif6-Jan-07 15:24 
Question[Message Deleted] Pin
code_wiz6-Jan-07 11:57
code_wiz6-Jan-07 11:57 
AnswerRe: ListView/TreeView controls vs. Databinding in .NET 2.0 Pin
MatrixCoder6-Jan-07 14:30
MatrixCoder6-Jan-07 14:30 
General[Message Deleted] Pin
code_wiz6-Jan-07 15:21
code_wiz6-Jan-07 15:21 
GeneralRe: ListView/TreeView controls vs. Databinding in .NET 2.0 Pin
MatrixCoder6-Jan-07 16:29
MatrixCoder6-Jan-07 16:29 
AnswerRe: ListView/TreeView controls vs. Databinding in .NET 2.0 Pin
Ed.Poore7-Jan-07 8:39
Ed.Poore7-Jan-07 8:39 
QuestionHow to add persian language and characters to windows CE Plat Form Builder 5.0 Pin
Hamidhbc6-Jan-07 3:26
Hamidhbc6-Jan-07 3:26 
QuestionHow to get ASCII value for refresh button???? Pin
Nithin Krishna6-Jan-07 1:13
Nithin Krishna6-Jan-07 1:13 
AnswerRe: How to get ASCII value for refresh button???? Pin
Colin Angus Mackay6-Jan-07 3:20
Colin Angus Mackay6-Jan-07 3:20 
QuestionRefresh or back button problem??????? Pin
Nithin Krishna5-Jan-07 19:20
Nithin Krishna5-Jan-07 19:20 
AnswerRe: Refresh or back button problem??????? Pin
Vasudevan Deepak Kumar5-Jan-07 22:38
Vasudevan Deepak Kumar5-Jan-07 22:38 
AnswerRe: Refresh or back button problem??????? Pin
Christian Graus5-Jan-07 22:52
protectorChristian Graus5-Jan-07 22:52 
QuestionProcessor [core] count. [modified] Pin
Captain See Sharp5-Jan-07 16:28
Captain See Sharp5-Jan-07 16:28 
AnswerRe: Processor [core] count. Pin
Not Active5-Jan-07 16:48
mentorNot Active5-Jan-07 16:48 
GeneralRe: Processor [core] count. Pin
Captain See Sharp5-Jan-07 17:02
Captain See Sharp5-Jan-07 17:02 
GeneralRe: Processor [core] count. Pin
JoeRip5-Jan-07 17:05
JoeRip5-Jan-07 17:05 

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.