Cargando…

C♯ 7 quick syntax reference : a pocket guide to the language, APIs and library /

This quick C# 7 guide is a condensed code and syntax reference to the C# programming language, updated with the latest features of C# 7.3 for .NET and Windows 10. It presents the essential C# 7 syntax in a well-organized format that can be used as a handy reference. In the C# 7 Quick Syntax Referenc...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Olsson, Mikael (Web programmer) (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [Place of publication not identified] : Apress, [2018]
Edición:Second edition.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 i 4500
001 OR_on1049802564
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu|||unuuu
008 180824t20182018xx of 001 0 eng d
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d N$T  |d GW5XE  |d EBLCP  |d YDX  |d UAB  |d UPM  |d OCLCF  |d OTZ  |d LVT  |d OCLCQ  |d UKMGB  |d U3W  |d VT2  |d CAUOI  |d SNK  |d MERER  |d LEAUB  |d OCLCQ  |d AU@  |d UKAHL  |d CEF  |d OCLCQ  |d OCLCO  |d LQU  |d C6I  |d OCLCO  |d FVL  |d OCLCO  |d OCLCQ  |d LEATE  |d OCLCQ  |d OCLCA  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCO 
015 |a GBB8M4686  |2 bnb 
016 7 |a 019140223  |2 Uk 
019 |a 1050134237  |a 1055597394  |a 1081242756  |a 1086476282  |a 1103255043  |a 1103572172  |a 1105182946  |a 1105720500  |a 1122847299  |a 1129351482 
020 |a 9781484238172  |q (electronic bk.) 
020 |a 1484238176  |q (electronic bk.) 
020 |a 9781484238189  |q (print) 
020 |a 1484238184 
020 |z 9781484238165 
020 |z 1484238168 
024 7 |a 10.1007/978-1-4842-3817-2  |2 doi 
024 8 |a 9781484238165 
024 8 |a 9781484238172 
024 8 |a 10.1007/978-1-4842-3 
027 |a SPRINTER 
029 1 |a CHNEW  |b 001073741 
029 1 |a CHVBK  |b 579465454 
029 1 |a UKMGB  |b 019140223 
029 1 |a AU@  |b 000068986509 
035 |a (OCoLC)1049802564  |z (OCoLC)1050134237  |z (OCoLC)1055597394  |z (OCoLC)1081242756  |z (OCoLC)1086476282  |z (OCoLC)1103255043  |z (OCoLC)1103572172  |z (OCoLC)1105182946  |z (OCoLC)1105720500  |z (OCoLC)1122847299  |z (OCoLC)1129351482 
037 |a com.springer.onix.9781484238172  |b Springer Nature 
050 4 |a QA76.73.C154 
072 7 |a COM  |x 051310  |2 bisacsh 
072 7 |a UMP  |2 bicssc 
072 7 |a UMP  |2 thema 
082 0 4 |a 005.133  |2 23 
049 |a UAMI 
100 1 |a Olsson, Mikael  |c (Web programmer),  |e author. 
245 1 0 |a C♯ 7 quick syntax reference :  |b a pocket guide to the language, APIs and library /  |c Mikael Olsson. 
246 3 |a C sharp seven quick syntax reference 
250 |a Second edition. 
264 1 |a [Place of publication not identified] :  |b Apress,  |c [2018] 
264 4 |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 
347 |a text file 
347 |b PDF 
500 |a Includes index. 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed August 27, 2018). 
505 0 |a Intro; Table of Contents; About the Author; About the Technical Reviewer; Introduction; Chapter 1: Hello World; Choosing an IDE; Creating a Project; Hello World; IntelliSense; Chapter 2: Compile and Run; Visual Studio Compilation; Console Compilation; Language Version; Comments; Chapter 3: Variables; Data Types; Declaration; Assignment; Integer Types; Floating-Point Types; Char Type; Bool Type; Variable Scope; Chapter 4: Operators; Arithmetic Operators; Assignment Operators; Combined Assignment Operators; Increment and Decrement Operators; Comparison Operators; Logical Operators. 
505 8 |a Bitwise OperatorsOperator Precedents; Chapter 5: Strings; String Concatenation; Escape Characters; String Compare; String Members; StringBuilder Class; Chapter 6: Arrays; Array Declaration; Array Allocation; Array Assignment; Array Access; Rectangular Arrays; Jagged Arrays; Chapter 7: Conditionals; If Statement; Switch Statement; Goto Statement; Ternary Operator; Chapter 8: Loops; While Loop; Do-while Loop; For Loop; Foreach Loop; Break and Continue; Chapter 9: Methods; Defining Methods; Calling Methods; Method Parameters; Params Keyword; Method Overloading; Optional Parameters. 
505 8 |a Named ArgumentsReturn Statement; Value and Reference Types; Pass by Value; Pass by Reference; Ref Keyword; Out Keyword; Local Methods; Chapter 10: Class; Object Creation; Accessing Object Members; Constructor; This Keyword; Constructor Overloading; Constructor Chaining; Initial Field Values; Default Constructor; Object Initializers; Partial Class; Garbage Collector; Destructor; Null Keyword; Nullable Types; Null-Coalescing Operator; Null-Conditional Operator; Default Values; Chapter 11: Inheritance; Object Class; Downcast and Upcast; The is and as Keywords; Pattern Matching; Boxing; Unboxing. 
505 8 |a Chapter 12: Redefining MembersHiding Members; Overriding Members; Hiding and Overriding; Sealed Keyword; Base Keyword; Chapter 13: Access Levels; Private Access; Protected Access; Internal Access; Protected Internal Access; Private Protected Access; Public Access; Top-Level Access Levels; Inner Classes; Access Level Guideline; Chapter 14: Static; Accessing Static Members; Static Methods; Static Fields; Static Classes; Static Constructor; Extension Methods; Chapter 15: Properties; Property Advantages; Read-Only and Write-Only Properties; Property Access Levels; Auto-Implemented Properties. 
505 8 |a Chapter 16: IndexersIndexer Parameters; Indexer Overloading; Chapter 17: Interfaces; Interface Signatures; Interface Example; Functionality Interface; Class Interface; Chapter 18: Abstract; Abstract Members; Abstract Example; Abstract Classes and Interfaces; Chapter 19: Namespaces; Nested Namespaces; Namespace Access; Using Directive; Chapter 20: Enum; Enum Example; Enum Constant Values; Enum Constant Type; Enum Access Levels and Scope; Enum Methods; Chapter 21: Exception Handling; Try-Catch Statement; Catch Block; Exception Filters; Finally Block; The using Statement; Throwing Exceptions. 
520 |a This quick C# 7 guide is a condensed code and syntax reference to the C# programming language, updated with the latest features of C# 7.3 for .NET and Windows 10. It presents the essential C# 7 syntax in a well-organized format that can be used as a handy reference. In the C# 7 Quick Syntax Reference, you will find a concise reference to the C# language syntax: short, simple, and focused code examples; a well laid out table of contents; and a comprehensive index allowing easy review. You won't find any technical jargon, bloated samples, drawn-out history lessons, or witty stories. What you will find is a language reference that is concise, to the point, and highly accessible. The book is packed with useful information and is a must-have for any C# programmer. You will: Discover what's new in C# 7.3 and .NET for Windows 10 programming, including out values, ref locals and returns, local functions, throw exceptions, and numeric literals Create lightweight, unnamed types that contain multiple public fields Create branching logic based on arbitrary types and values of the members of those types Nest functions inside other functions to limit their scope and visibility Throw expressions in code constructs that previously were not allowed Declare methods with the async modifier to return other types in addition to Task Use the new numeric literals found in C# 7.3 to improve readability for numeric constants. 
542 |f © Copyright 2018 Mikael Olsson.  |g 2018 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a C# (Computer program language)  |v Handbooks, manuals, etc. 
650 0 |a Internet programming  |v Handbooks, manuals, etc. 
650 6 |a C# (Langage de programmation)  |v Guides, manuels, etc. 
650 6 |a Programmation Internet  |v Guides, manuels, etc. 
650 7 |a Programming & scripting languages: general.  |2 bicssc 
650 7 |a Computer programming  |x software development.  |2 bicssc 
650 7 |a Microsoft programming.  |2 bicssc 
650 7 |a COMPUTERS  |x Programming Languages  |x C#.  |2 bisacsh 
650 7 |a C# (Computer program language)  |2 fast 
650 7 |a Internet programming  |2 fast 
655 2 |a Handbook 
655 7 |a handbooks.  |2 aat 
655 7 |a Handbooks and manuals  |2 fast 
655 7 |a Handbooks and manuals.  |2 lcgft 
655 7 |a Guides et manuels.  |2 rvmgf 
776 0 8 |i Print version:  |a Olsson, Mikael (Web programmer).  |t C♯ 7 quick syntax reference.  |b Second edition.  |d [Place of publication not identified] : Apress, [2018]  |z 1484238168  |z 9781484238165  |w (OCoLC)1037808704 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484238172/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH35661607 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL5497085 
938 |a EBSCOhost  |b EBSC  |n 1878014 
938 |a YBP Library Services  |b YANK  |n 15671547 
994 |a 92  |b IZTAP