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.3 Structures


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

public struct DataGridCell {
// member definitions
}

In VB, a structure definition is indicated by the
Structure... End
Structure construct:

Public Structure DataGridCell
' member definitions
End Structure

C# uses the colon with structures to indicate interface
implementation. Any implemented interfaces are part of the
class statement. In VB, any implemented interfaces
are specified by an Implements statement on the
line immediately following the Structure
statement. However, none of the structures documented in the
reference section of this book use interface inheritance.


/ 873