ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید










22.4 Interfaces


C# uses the
interface statement along with opening and closing
braces to indicate the beginning and end of an interface definition.
For example:

public interface IUIService {
// member definitions
}

In VB, an interface definition is indicated by the
Interface... End Structure construct:

Public Interface IUIService
' member definitions
End Interface

C# uses the colon with interfaces to specify any implemented
interfaces. For example:

public interface ISite : IServiceProvider

In VB, any implemented interfaces are specified by an
Implements statement on the line immediately
following the Interface statement. Hence, the
previous definition of ISite in C# would appear as
follows in VB:

Public Interface ISite
Implements IServiceProvider


/ 873