Browse by Tags

Related Posts

  • LINQ with Interface, changing Database Model Layer? ( ASP.NET MVC thoughts )

    So i was thinking about using Interfaces to create a somewhat better API / Design. I want to have some control over my data when using LINQ to SQL and mapping my own classes seems unessesary and just out of order. What i was thinking was that i'll modify the .dbml which has the logic for my database...
    Posted to ASP.NET MVC (Forum) by FilipEkberg on 11-27-2008, 12:00 AM
    Filed under: C#, interfaces, Linq, ASP.NET mvc
  • Protected/Private Interface

    Hi Guys, We all know that Interface members are by default Public and Abstract. But can we declare Interface as private or protected ? If yes then what is the significance of Private Interface and is there any difference in implementation of Protected and Public Interfaces?
    Posted to C# (Forum) by spillbean on 08-29-2008, 12:00 AM
    Filed under: C#, C#2.0, Interfaces, private
  • Difference between Abstract class and interface

    Difference between Abstract class and interface- 1. The abstract class allows concrete methods (methods that have implementation) but interface doesn’t not. 2. A class can inherit from only one class, but can implement any number of interfaces. 3. Interface doesn’t allow variables/constants to be declared...
    Posted to Tips & Tricks (Forum) by satya_chhikara on 03-31-2008, 12:00 AM
    Filed under: Abstract class, c#, interfaces, ASP.NET
  • Re: when to use IDataReader ? why not just read directly from datareader?

    IDataReader is referring to an interface. Basically If your method accepts an IDataReader that means that it will accept anything that uses that interface. This means you can use any data reader you want basically. The method will accept your datareader because the datareader implements the IDataReader...
    Posted to Getting Started (Forum) by benrick on 12-01-2007, 12:00 AM
    Filed under: C#, interfaces
Page 1 of 1 (4 items)