DotNetShoutout - Stories tagged with Interface
6
Shouts

Building a Tree Class

published 652 days, 17 hours, 48 minutes ago posted by KodefuGuruKodefuGuru 653 days, 23 minutes ago
Friday, August 12, 2011 9:20:11 PM GMT Friday, August 12, 2011 2:46:02 PM GMT
In the article, Lambdas for Junior Developers, I built a TreeNode class with a Find method to demonstrate the use of lambdas. This was merely an example and not something I would actually use without some work. I am going to take the fledgling TreeNode class and work on it as a basis for a tree class library... (more)
category: How To | clicked: 18 | comment | | source: www.kodefuguru.com
tags: Generics, lambda, Fluent, Tree, Interface
2
Shouts

Difference Between an Interface and Abstract Class

published 720 days, 23 hours, 41 minutes ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 722 days, 5 hours, 3 minutes ago
Sunday, June 05, 2011 3:27:33 PM GMT Saturday, June 04, 2011 10:05:57 AM GMT
Difference Between an Interface and Abstract Class On 11.05.13, In Programming, by uniquesaiful Difference between an interface and abstract class. Interface contains method definition – there is no implementation.  An abstract class some methods can be concrete.  In an interface, no accessibility modifiers are allowed.  An abstract class may have accessibility modifiers.  Feature Interface Abstract class Multiple inheritance A class may inherit several interfaces. A class may inherit only one ab... (more)
category: Web Dev | clicked: 20 | comment | | source: computersight.com
tags: Abstract Class, Difference, Interface
5
Shouts

Dean Hume - Explicit Interface Usage in C#

published 795 days, 15 hours, 9 minutes ago posted by deanomachinodeanomachino 796 days, 5 hours, 39 minutes ago
Tuesday, March 22, 2011 11:59:28 PM GMT Tuesday, March 22, 2011 9:29:58 AM GMT
Explicit Interface Usage in C# Where possible, I try and program against interfaces as much as possible. I do this because I like Interface-based programming and because I like the characteristics that it brings to the table: reusability, maintainability, and extensibility. It also allows you to effectively test your code using Mocks. Whether or not you like to code this way, you may however find that there are certain situations in which you need to explicitly set the usage of an interface. When ... (more)
category: Web Dev | clicked: 2 | 1 comment | | source: deanhume.com
tags: C#, Explicitly Implemented Interfaces, Interface
2
Shouts

C# and .NET OOP (Object oriented  programming) interview questions - Abstract classes and interfaces.

published 906 days, 1 hour, 26 minutes ago posted by questpondquestpond 907 days, 1 hour, 28 minutes ago
Thursday, December 02, 2010 1:42:44 PM GMT Wednesday, December 01, 2010 1:40:43 PM GMT
I have yet to remember a .NET interviewer who never asked about abstract classes ,  interfaces and object oriented interview questions . I am putting forward questions which comes around abstract classes and interfaces again and again...Hope every one benefits. (more)
category: Web Dev | clicked: 1 | comment | | source: www.questpond.com
tags: .NET, C#, Abstract, Interface
4
Shouts

Explicit Interface Method in C#

published 962 days, 32 minutes ago posted by http://bimbim-in.myopenid.com/http://bimbim-in.myopenid.com/ 965 days, 6 minutes ago
Thursday, October 07, 2010 2:36:58 PM GMT Monday, October 04, 2010 3:03:02 PM GMT
When any type is loaded by CLR then all method of the class and all inherited public methods and interfaces implementation methods are added to method table. For example i have created a class Test which is implementing one interface IFormattable and it has only one method ToString().publicclass Test:IFormattable { publicstring ToString(string format, IFormatProvider formatProvider) { return"Test"; } } When this class will be loaded then method table has entries for all virtual methods ... (more)
category: How To | clicked: 0 | comment | | source: bimbim.in
tags: Explicit Interface, EIMI, Interface
5
Shouts

blog.RunXc | Interface Driven Extensibility in .Net

published 1046 days, 1 hour, 46 minutes ago posted by runxc1runxc1 1046 days, 9 hours, 28 minutes ago
Thursday, July 15, 2010 1:22:57 PM GMT Thursday, July 15, 2010 5:40:25 AM GMT
If you want to create an extensible application than take a look at the article as it gives an example in MEF and IronRuby and how Interfaces can be used with theses technologies to allow your application to grow. (more)
category: Architecture | clicked: 0 | comment | | source: blog.runxc.com
tags: IronRuby, MEF, Extensibility, Interface
3
Shouts

Redcastle CRM Limited found the perfect solution for its CRM web modules

published 1053 days, 1 hour, 35 minutes ago posted by EinatsmEinatsm 1054 days, 8 hours, 2 minutes ago
Thursday, July 08, 2010 1:33:51 PM GMT Wednesday, July 07, 2010 7:06:51 AM GMT
"Developing the web part with Visual WebGui saved us a lot of user interface development and allowed us more effort to be put into the actual application. …all at the speed of light!" Jeff Proctor (more)
category: Web Dev | clicked: 0 | comment | | source: www.visualwebgui.com
tags: CRM, Development, Interface
9
Shouts

Basic introduction to writing unit tests with Moq - Part 2

posted by deanomachinodeanomachino 1082 days, 22 hours, 32 minutes ago
Tuesday, June 08, 2010 4:36:12 PM GMT
Basic introduction to writing unit tests with Moq - Part 2 This post is the second part of a series on Mocking with Moq. If you haven't already taken a look at the first post on the basics of Moq, please check it out. In this post, I hope to cover some other basic aspects of mocking such as Verifying, Exceptions and strict Mock behaviour. There are a lot of awesome aspects of mocking out there, and I still try and experiment with them as much as possible. In the first post, I talked about the adv... (more)
category: Agile | clicked: 4 | comment | | source: www.deanhume.com
tags: .NET, Rhino Mocks, Interfaces, C#, Development, Mocking, Agile, Moq, Unit Tests, Interface