|
|
|
|
LEADER |
00000cam a2200000 i 4500 |
001 |
KNOVEL_on1029545729 |
003 |
OCoLC |
005 |
20231027140348.0 |
006 |
m o d |
007 |
cr cnu|||||||| |
008 |
180326s2018 inu o 000 0 eng d |
040 |
|
|
|a N$T
|b eng
|e rda
|e pn
|c N$T
|d N$T
|d EBLCP
|d NLE
|d OCLCF
|d YDX
|d IDB
|d DG1
|d YT1
|d UAB
|d TEFOD
|d MERER
|d K6U
|d D6H
|d MLSOD
|d OCLCQ
|d OTZ
|d RECBK
|d OCLCO
|d LVT
|d U3W
|d OCLCQ
|d OCLCO
|d DG1
|d KNOVL
|d LIV
|d DG1
|d UKAHL
|d COO
|d OCLCQ
|d OCLCO
|d OCLCQ
|d BRF
|d OCLCQ
|d OCLCO
|d OCLCQ
|d BRX
|d OCLCQ
|
019 |
|
|
|a 1029654361
|a 1029783031
|a 1029852250
|a 1029858541
|a 1029880379
|a 1060789362
|
020 |
|
|
|a 9781119458661
|q (electronic bk.)
|
020 |
|
|
|a 1119458668
|q (electronic bk.)
|
020 |
|
|
|a 9781119458722
|q (electronic bk.)
|
020 |
|
|
|a 9781119549550
|q (electronic bk.)
|
020 |
|
|
|a 1119549558
|q (electronic bk.)
|
020 |
|
|
|a 1119458722
|q (electronic bk.)
|
020 |
|
|
|a 1119458684
|
020 |
|
|
|a 9781119458685
|
020 |
|
|
|a 9781523118519
|q (electronic bk.)
|
020 |
|
|
|a 1523118512
|q (electronic bk.)
|
029 |
1 |
|
|a AU@
|b 000063892296
|
029 |
1 |
|
|a CHBIS
|b 011327442
|
029 |
1 |
|
|a CHNEW
|b 001018880
|
029 |
1 |
|
|a CHVBK
|b 528464922
|
029 |
1 |
|
|a CHVBK
|b 555579557
|
029 |
1 |
|
|a GBVCP
|b 1018275959
|
035 |
|
|
|a (OCoLC)1029545729
|z (OCoLC)1029654361
|z (OCoLC)1029783031
|z (OCoLC)1029852250
|z (OCoLC)1029858541
|z (OCoLC)1029880379
|z (OCoLC)1060789362
|
037 |
|
|
|a 6112FE01-D5EB-4F24-ADCB-6E8B3348CD4C
|b OverDrive, Inc.
|n http://www.overdrive.com
|
050 |
|
4 |
|a QA76.73.C154
|
072 |
|
7 |
|a COM
|x 051000
|2 bisacsh
|
082 |
0 |
4 |
|a 005.13/3
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Perkins, Benjamin,
|e author.
|
245 |
1 |
0 |
|a Beginning C# 7 Programming with Visual Studio 2017 /
|c Benjamin Perkins, Jacob Vibe Hammer and Jon D. Reid.
|
246 |
3 |
|
|a C# 7 programming with visual studio 2017
|
246 |
3 |
|
|a C# seven programming with visual studio 2017
|
246 |
3 |
|
|a Beginning C# seven programming with visual studio 2017
|
264 |
|
1 |
|a Indianapolis, IN :
|b John Wiley and Sons, Inc. :
|b Wrox,
|c 2018.
|
300 |
|
|
|a 1 online resource
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
588 |
0 |
|
|a Online resource; title from PDF title page (EBSCO, viewed March 27, 2018).
|
505 |
0 |
|
|a Cover; Title Page; Copyright; About the Authors; About the Technical Editor; Credits; Acknowledgments; Contents; Introduction; Who This Book is for; What This Book Covers; How This Book is Structured; The C# Language (Chapters 1-13); Windows Programming (Chapters 14-15); Cloud and Cross-Platform Programming (Chapters 16-19); Data Access (Chapters 20-23); Additional Techniques (Chapters 24-25); What you Need to use This Book; Conventions; Source Code; Errata; Part I: The C# Language; Chapter 1: Introducing C#; What is the .NET Framework?; What's in the .NET Framework?
|
505 |
8 |
|
|a .NET Standard and .NET CoreWriting Applications Using the .NET Framework and .NET Core; CIL and JIT; Assemblies; Managed Code; Garbage Collection; Fitting it Together; Linking; What Is C#?; Applications You Can Write with C#; C# in this Book; Visual Studio 2017; Visual Studio 2017 Products; Solutions; Chapter 2: Writing a C# Program; The Visual Studio 2017 Development Environment; Console Applications; The Solution Explorer; The Properties Window; The Error List Window; Desktop Applications; Chapter 3: Variables and Expressions; Basic C# Syntax; Basic C# Console Application Structure.
|
505 |
8 |
|
|a VariablesSimple Types; Variable Naming; Literal Values; Binary Literals and Digit Separators; String Literals; Expressions; Mathematical Operators; Assignment Operators; Operator Precedence; Namespaces; Chapter 4: Flow Control; Boolean Logic; Boolean Bitwise and Assignment Operators; Operator Precedence Updated; Branching; The Ternary Operator; The if Statement; Checking More Conditions Using if Statements; The switch Statement; Looping; do Loops; while Loops; for Loops; Interrupting Loops; Infinite Loops; Chapter 5: More about Variables; Type Conversion; Implicit Conversions.
|
505 |
8 |
|
|a Explicit ConversionsExplicit Conversions Using the Convert Commands; Complex Variable Types; Enumerations; Defining Enumerations; Structs; Defining Structs; Arrays; Declaring Arrays; foreach Loops; Pattern Matching with switch case expression; Multidimensional Arrays; Arrays of Arrays; String Manipulation; Chapter 6: Functions; Defining and Using Functions; Return Values; Parameters; Parameter Matching; Parameter Arrays; Reference and Value Parameters; Out Parameters; Tuples; Variable Scope; Variable Scope in Other Structures; Parameters and Return Values versus Global Data; Local Functions.
|
505 |
8 |
|
|a The Main() FunctionStruct Functions; Overloading Functions; Using Delegates; Chapter 7: Debugging and Error Handling; Debugging in Visual Studio; Debugging in Nonbreak (Normal) Mode; Outputting Debugging Information; Tracepoints; Diagnostics Output Versus Tracepoints; Debugging in Break Mode; Entering Break Mode; Monitoring Variable Content; Stepping through Code; Immediate and Command Windows; The Call Stack Window; Error Handling; try ... catch ... finally; Throw Expressions; Listing and Configuring Exceptions; Chapter 8: Introduction to Object-Oriented Programming.
|
520 |
|
|
|a Written in a friendly, mentor-style fashion, with each chapter building on previous ones, this book is full of helpful hints, tips, exercises, and full-fledged example code, and will teach you about all aspects of C# programming quickly and easily. --
|c Edited summary from book.
|
590 |
|
|
|a Knovel
|b ACADEMIC - Software Engineering
|
630 |
0 |
0 |
|a Microsoft Visual studio.
|
630 |
0 |
7 |
|a Microsoft Visual studio.
|2 fast
|0 (OCoLC)fst01389599
|
650 |
|
0 |
|a C# (Computer program language)
|
650 |
|
6 |
|a C# (Langage de programmation)
|
650 |
|
7 |
|a COMPUTERS? Programming
|x General.
|2 bisacsh
|
650 |
|
7 |
|a C# (Computer program language)
|2 fast
|0 (OCoLC)fst00843284
|
700 |
1 |
|
|a Hammer, Jacob Vibe,
|e author.
|
700 |
1 |
|
|a Reid, Jon D.,
|e author.
|
856 |
4 |
0 |
|u https://appknovel.uam.elogim.com/kn/resources/kpBCPVS00L/toc
|z Texto completo
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH33941064
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH33941065
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL5327219
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 1737840
|
938 |
|
|
|a Recorded Books, LLC
|b RECE
|n rbeEB00743021
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 15649835
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 15242088
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 15237066
|
994 |
|
|
|a 92
|b IZTAP
|