DotNetShoutout - Stories tagged with OOP
2
Shouts

Object Oriented programming ( OOP ) :- What is Aggregation , Association and Composition ?

published 474 days, 11 hours, 16 minutes ago posted by questpondquestpond 476 days, 56 minutes ago
Monday, February 06, 2012 6:22:29 PM GMT Sunday, February 05, 2012 4:42:26 AM GMT
In this video we will demonstrate 3 important principles i.e. Aggregation , Association and Composition using c#. All the 3 things are important pillars of OOP ( object oriented programming) relationship. OOP(Object Oriented Programming) (more)
category: Architecture | clicked: 48 | comment | | source: youtu.be
tags: .NET, Programming, C#, OOP, Object Oriented Programming
2
Shouts

c# :- Class1 creates objects of Class2 and Class2 creates of Class1 what will happen ?

posted by questpondquestpond 525 days, 17 hours, 55 minutes ago
Saturday, December 17, 2011 11:42:55 AM GMT
c# :- Class1 creates objects of Class2 and Class2 creates of Class1 what will happen ? .NET and C# interview questions and OOP (more)
category: Web Dev | clicked: 5 | comment | | source: youtu.be
tags: SQL Server, .NET and C# interview questions, OOP, Asp.Net Interview Question
2
Shouts

Knowledge Sharing session :- What is polymorphism, static polymorphism and dynamic polymorphism ? - YouTube

posted by questpondquestpond 526 days, 17 hours, 7 minutes ago
Friday, December 16, 2011 12:30:56 PM GMT
Knowledge Sharing session :- What is polymorphism , static polymorphism and dynamic polymorphism ? .NET and C# and Polymorphism (more)
category: Web Dev | clicked: 4 | comment | | source: youtu.be
tags: Polymorphism, .NET and C# interview questions, VB.NET, OOP
4
Shouts

Things Every Senior .NET Developer Should Know, Part 1 - Object-Oriented Programming

published 573 days, 8 hours, 57 minutes ago posted by Matt_TCFMatt_TCF 576 days, 5 hours, 46 minutes ago
Sunday, October 30, 2011 8:41:35 PM GMT Thursday, October 27, 2011 11:52:41 PM GMT
If I could pick only one thing that a senior-level .NET developer should know, it would be Object-Oriented Programming (OOP). True, OOP is not .NET specific, and indeed I think at this point a senior developer on virtually any platform should be familiar with OOP, it’s especially important here in the .NET world. Read on to find out why I think OOP is so important and to get a quick introduction and refresher on the four major tenets of OOP. (more)
category: How To | clicked: 73 | 6 comments | | source: trycatchfail.com
tags: .NET, OOP, object-oriented programming
3
Shouts

.NET and OOP interview questions :- What is the difference between abstraction and encapsulation ? ...

published 826 days, 11 hours, 23 minutes ago posted by questpondquestpond 828 days, 15 hours, 49 minutes ago
Saturday, February 19, 2011 6:14:56 PM GMT Thursday, February 17, 2011 1:49:07 PM GMT
This is a very typical .NET  interview question which confuses most of the .NET professionals. Both abstraction and encapsulation look similiar , but they have huge differences between them. (more)
category: Web Dev | clicked: 0 | comment | | source: www.dotnetfunda.com
tags: .NET, OOP, Interview Questions and answers
2
Shouts

MSDN Magazine: The Working Programmer - Multiparadigmatic .NET, Part 5: Automatic Metaprogramming

posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 871 days, 18 hours, 57 minutes ago
Wednesday, January 05, 2011 10:41:41 AM GMT
Inheritance stands at the center of the object-oriented paradigm, but it isn’t always the best solution for all problems in OO programming, and despite its flaws and pitfalls, automatic metaprogramming, or code generation, is a useful tool to keep in your toolbox. (more)
category: How To | clicked: 23 | comment | | source: msdn.microsoft.com
tags: OOP, MSDN, MSDN Magazine
5
Shouts

Is That Closure or Inheritance?

published 1017 days, 17 hours, 34 minutes ago posted by KodefuGuruKodefuGuru 1018 days, 16 hours, 11 minutes ago
Thursday, August 12, 2010 12:04:44 PM GMT Wednesday, August 11, 2010 1:27:37 PM GMT
In response to my previous story, a commenter asked if the code I posted works due to a closure relationship rather than inheritance. The argument is that the field can be accessed by a nested class, and it wasn’t actually passed as a member to the other class. The reader of the story states that the field would still be accessed in Java even if Employee didn’t inherit from Person. Then, the question is asked if it’s different in C#. I’m not familiar enough with Java to speak about how it works, but I ... (more)
category: How To | clicked: 0 | comment | | source: www.kodefuguru.com
tags: C#, OOP
5
Shouts

Are Private Members Inherited?

published 1018 days, 15 hours, 19 minutes ago posted by KodefuGuruKodefuGuru 1019 days, 16 hours, 28 minutes ago
Wednesday, August 11, 2010 2:19:45 PM GMT Tuesday, August 10, 2010 1:10:28 PM GMT
On one level, it would appear that classes don’t inherit private members. Public and protected members are accessible by the subclass, but those pesky privates seemingly can’t be accessed. Of course, they’re there, otherwise calls to the exposed methods would not work. Then, there’s always reflection to access them. But I’m not really concerned about reflection or lower-level activities such as memory access; I’m more interested in the higher level concept of inheritance. Is the private member passed on ... (more)
category: How To | clicked: 2 | 1 comment | | source: www.kodefuguru.com
tags: Inheritance, C#, OOP
4
Shouts

The override that was not (Popular Misconception) in C#

published 1041 days, 19 hours, 14 minutes ago posted by codegaincodegain 1043 days, 43 minutes ago
Monday, July 19, 2010 10:24:02 AM GMT Sunday, July 18, 2010 4:55:41 AM GMT
I was interviewing for jobs this past week and at all of the interviews, I was presented with questions about object oriented techniques and C#. When asked about overriding a method on a class that wasn't marked as virtual, I informed the interviewers that it can't be done. (more)
category: How To | clicked: 0 | comment | | source: www.codegain.com
tags: .NET, C#, Overloading, OOP