Главная    Ex Libris    Книги    Журналы    Статьи    Серии    Каталог    Wanted    Загрузка    ХудЛит    Справка    Поиск по индексам    Поиск    Форум   
blank
Авторизация

       
blank
Поиск по указателям

blank
blank
blank
Красота
blank
Liberty J. — Learning Visual Basic .NET
Liberty J. — Learning Visual Basic .NET



Обсудите книгу на научном форуме



Нашли опечатку?
Выделите ее мышкой и нажмите Ctrl+Enter


Название: Learning Visual Basic .NET

Автор: Liberty J.

Аннотация:

Visual Basic .NET (VB.NET) is a programming language that facilitates object-oriented Internet development. Assuming no prior programming experience on the part of the reader, this guide presents an in-depth introduction to fundamentals such as Visual Studio .NET, object-oriented programming principles, and the VB.NET language itself. Topics include, for example, variables and constants, looping and branching, structures and interfaces, and basic debugging.


Язык: en

Рубрика: Технология/

Статус предметного указателя: Готов указатель с номерами страниц

ed2k: ed2k stats

Издание: First Edition

Год издания: 2002

Количество страниц: 320

Добавлена в каталог: 09.11.2007

Операции: Положить на полку | Скопировать ссылку для форума | Скопировать ID
blank
Предметный указатель
default property, retrieving      
Dequeue() (Queue)      
derived classes      
design time      
Developmentor web site      2nd
DirectCast()      
discussion group, supporting this book      
Dispose()      
Do loops      
Do loops, breaking out of      
Do loops, caution when looping to specific value      
Do While loops      
Dollar sign ($)      
double quotes ("")
Double type      
Double type, as fractional value      
Double type, literal format      
DrawWindow()      
ElseIf statements      
encapsulating data with properties      
encapsulating data with properties, Get/Set accessors      
EndsWith() (String)      
Enqueue() (Queue)      
EnsureCapacity() (StringBuilder)      
Enum type      
Enumerations      
enumerations, advancing to next element      
enumerations, enumerator list      
enumerations, incrementing index      
enumerations, iterating array lists      
enumerations, retrieving for queues      
enumerations, setting to initial position      
Equals()      
Equals(), Object class      
Equals(), String class      2nd
Errors      
errors, compiler, types and      
errors, treating compiler warnings as      
event handlers, creating      
Events      
events, applications and      
events, polling      
events, raising      
Exception class, methods and properties      
exception handlers      
exception handlers, searching for      
Exceptions      
exceptions, bugs compared to      
exceptions, creating dedicated catch statements      
exceptions, Finally statement      
exceptions, linking to help file associated with      
exceptions, providing information to users      
exceptions, providing strack trace for error statements      
exceptions, throwing      
exceptions, Try/Catch blocks      
exceptions, unhandled, example      
exclamation mark (!)      
Exit Do statements      
explicit cast      
exponentiation operator      
extending interfaces      
extreme Or operator      
FAQ (Frequently Asked Questions), supporting this book      2nd
FCL (framework class library)      
Fibonacci series      
Fields      
fields, structures and      
Files      2nd
Finalize()      
finally block      [See Finally statement]
Finally statement      
For Each loops      2nd
For Each loops, enumerating through collections      
For Each loops, IEnumerable interface and      
for loops      
For loops, controlling with Next statements      
For loops, nesting      
Format() (String)      
forward slash (/)      [See / under
Framework Class Library (FCL)      
Frequently Asked Questions (FAQ), supporting this book      
Friend access modifier      
Garbage collection      
Generalization      
generalization, in object-oriented programming, example      
Get/Set accessors      
GetEnumerator()      
GetEnumerator(), ArrayList class      
GetEnumerator(), IEnumerable class      
GetEnumerator(), Queue class      
GetEnumerator(), Stack class      
GetHashCode() (Object)      
GetType() (Object)      
gotdotnet forum      
Goto statements      
greater than or equal signs (>= or =>)      [See >= or => under
greater than sign (>)      [See \\> under
handles keyword      
handling exceptions      
HelpLink property (Exception class)      2nd
HTML files      
ICloneable interface      
ICollection interface      
IComparable interface      
IComparer interface      
IConvertible interface      
IDE (Integrated Development Environment)      
Identifiers      2nd 3rd
IDictionary interface      
IDictionaryEnumerator interface      
IDisposable interface      
IEnumerable interface      
IEnumerable interface, enumeration example      
IEnumerable interface, For Each loops and      
IEnumerable interface, implementing for example ListBoxTest class      
IEnumerator class      
IEnumerator interface      
IEnumerator interface, table of methods and properties      
IF statements      
If...Else statements      
IL      [See MSIL]
ILDasm (Intermediate Language DISassembler)      
IList interface      
Implements keyword      
implicit cast      
indexers      
indexers, assignment and      
indexers, default property and      
indexers, incrementing in enumerators      
indexers, indexing on other values      
indexOf()      
IndexOf(), Array class      
IndexOf(), String class      
inheritance      2nd [See also polymorphism]
inheritance tree of classes      
inheritance, calling base class constructors      
inheritance, controlling access      
inheritance, shadowing base methods      
Inherits keyword      
initializing arrays      
Insert()      
Insert(), ArrayList class      
Insert(), String class      
Insert(), StringBuilder      
instance members      
instantiating objects      
instantiating objects, abstract classes and      
instantiating objects, Camel notation and      
instantiating objects, New keyword      
Integer type      
Integer type, literal format      
integrated development environment (IDE)      
Intellisense      
IntelliSense, Implements keyword and      
IntelliSense, VS.NET IDE and      
Interface keyword      
Interfaces      
interfaces, abstract base classes compared to      
interfaces, accessing members of      
interfaces, casting to      
interfaces, casting to, Is operator      
interfaces, class implementation and      
interfaces, client class      
interfaces, combining      
interfaces, defining      
interfaces, extending      
interfaces, implementing      
interfaces, implementing class      
interfaces, implementing, multiple      
interfaces, naming conventions      
interfaces, overriding implementations      
interfaces, overriding implementations, example      
interfaces, zzz      [See also collection interfaces][See also collection interfaces]
Intermediate Language DISassembler (ILDasm)      
intrinsic types      
intrinsic types, implicit methods      
intrinsic types, table of      
intrinsic types, working with numeric values      
Is operator      
IsFixedSize property (Array class)      
Item() (ArrayList)      
iteration statements      [See looping statements]
jagged arrays      2nd
JIT (Just In Time) compiler      
last-in, first-out (LIFO)      
LastIndexOf()      
LastIndexOf(), Array class      
LastIndexOf(), String class      
Length property      
Length property, Array class      2nd
Length property, String class      2nd
Length property, StringBuilder class      
less than or equals signs (<= or =<)      [See <= or =< under
less than sign (<)      [See < under
LIFO (last-in, first-out)      
literal constants      
literal constants, formats, table of      
Literals      
local scope      
local variables      
Locals window (VS.NET)      
logical operators      
logical operators, precedence of      
logical operators, within conditionals      
Long type      
Long type, literal format      
Looping      
looping statements      
looping statements, Do      
looping statements, Do While      
looping statements, Do, breaking out of      
looping statements, For      
looping statements, For, controlling with Next statements      
looping statements, For, nesting      
looping statements, Goto      
looping statements, While      
looping, zzz      [See also looping statements][See also looping statements]
main()      
mathematical operators      
mathematical operators, precedence of      
mathematical operators, simple arithmetical      
mathematical operators, simple arithmetical, addition      
mathematical operators, simple arithmetical, division      
mathematical operators, simple arithmetical, exponentiation      
mathematical operators, simple arithmetical, modulus      
mathematical operators, simple arithmetical, multiplication      
mathematical operators, simple arithmetical, subtraction      
MaxCapacity property (StringBuilder class)      
MDI (Multiple Document Interface)      
Me keyword      
member fields      
member functions      [See methods]
member variables      
member variables, access modifiers for      
member variables, designating as private      
member variables, instance      
member variables, shared      
MemberwiseClose() (Object)      
memory allocation in class definitions      
Message property (Exception class)      2nd
metacharacters      
Metadata      
method arguments      
METHODS      2nd 3rd 4th
methods, accessibility of, explicitly setting      
methods, adding by interface extension      
Methods, arguments      
methods, Array class, table of      
methods, branching      [See branching]
methods, calling      
methods, creating polymorphic      
methods, creating polymorphic, runtime and      
methods, method calls      
Methods, overloading      
methods, overloading, number allowed in each class      
methods, shadowing base      
methods, signatures      
Microsoft Intermediate Language (MSIL)      
Microsoft newsgroups      
minus sign (-)      [See - under
mod operator      
Module keyword      
Modules      2nd
modules, as classes[modules classes]      
modulus operator      
MoveNext() (IEnumerator)      
MSDN      
MSDN, further resources      
MSDN, online help, accessing      
MSIL (Microsoft Intermediate Language)      
multidimensional arrays      2nd
multidimensional arrays, jagged arrays      
multidimensional arrays, rectangular arrays      
Multiple Document Interface (MDI)      
MustInherit keyword      
MyBase keyword      
Namespaces      
narrowing cast      
Nested If statements      
New Breakpoint dialog (VS.NET)      
New Breakpoint option (Debug menu, VS.NET)      
New keyword      
New Project dialog (VS.NET)      
New Project dialog (VS.NET), creating a Windows application      
newsgroups, VB.NET      
Next statements      
NOT operator      
Nothing keyword      
NotInheritable classes      
number sign (#)      
numeric expressions, converting      
numeric types      
numeric types, default value      2nd
O (apostrophe)      
Object class      
Object class, explicit derivation from      
Object-Oriented Programming      2nd
object-oriented programming, analysis and design      
object-oriented programming, creating models      
object-oriented programming, defining classes      
1 2 3 4
blank
Реклама
blank
blank
HR
@Mail.ru
       © Электронная библиотека попечительского совета мехмата МГУ, 2004-2024
Электронная библиотека мехмата МГУ | Valid HTML 4.01! | Valid CSS! О проекте