Microsoft Visual C# step by step
(eBook)

Book Cover
Average Rating
Published
[Place of publication not identified] : Pearson Education :, [2018].
Format
eBook
Edition
Ninth edition.
ISBN
9780134850771, 0134850777, 1509307761, 9781509307760, 9780134850801, 0134850807, 9780134850757, 0134850750
Physical Desc
1 online resource (1 volume) : illustrations
Status

Description

Loading Description...

Also in this Series

Checking series information...

More Like This

Loading more titles like this title...

Syndetics Unbound

More Details

Language
English

Notes

General Note
Includes index.
Description
Your hands-on guide to Microsoft Visual C# fundamentals with Visual Studio 2017 Expand your expertise--and teach yourself the fundamentals of programming with the latest version of Visual C# with Visual Studio 2017. If you are an experienced software developer, you'll get all the guidance, exercises, and code you need to start building responsive, scalable Windows 10 and Universal Windows Platform applications with Visual C#. Discover how to: Quickly start creating Visual C# code and projects with Visual Studio 2017 Work with variables, operators, expressions, and methods Control program flow with decision and iteration statements Build more robust apps with error, exception, and resource management Master the essentials of Visual C# object-oriented programming Use enumerations, structures, generics, collections, indexers, and other advanced features Create in-memory data queries with LINQ query expressions Improve application throughput and response time with asynchronous methods Decouple application logic and event handling Streamline development with new app templates Implement the Model-View-ViewModel (MVVM) pattern Build Universal Windows Platform apps that smoothly adapt to PCs, tablets, and Windows phones Integrate Microsoft Azure cloud databases and RESTful web services.
Local note
O'Reilly,O'Reilly Online Learning: Academic/Public Library Edition

Reviews from GoodReads

Loading GoodReads Reviews.

Citations

APA Citation, 7th Edition (style guide)

Sharp, J. (2018). Microsoft Visual C# step by step (Ninth edition.). Pearson Education :.

Chicago / Turabian - Author Date Citation, 17th Edition (style guide)

Sharp, John, 1964-. 2018. Microsoft Visual C# Step By Step. Pearson Education.

Chicago / Turabian - Humanities (Notes and Bibliography) Citation, 17th Edition (style guide)

Sharp, John, 1964-. Microsoft Visual C# Step By Step Pearson Education, 2018.

MLA Citation, 9th Edition (style guide)

Sharp, John. Microsoft Visual C# Step By Step Ninth edition., Pearson Education :, 2018.

Note! Citations contain only title, author, edition, publisher, and year published. Citations should be used as a guideline and should be double checked for accuracy. Citation formats are based on standards as of August 2021.

Staff View

Grouped Work ID
33be5c0a-d4ef-84e6-a08d-67ef24feeccb-eng
Go To Grouped Work

Grouping Information

Grouped Work ID33be5c0a-d4ef-84e6-a08d-67ef24feeccb-eng
Full titlemicrosoft visual c step by step
Authorsharp john
Grouping Categorybook
Last Update2023-12-11 15:41:25PM
Last Indexed2024-03-29 02:28:47AM

Book Cover Information

Image Sourcesyndetics
First LoadedNov 19, 2022
Last UsedMar 26, 2024

Marc Record

First DetectedNov 09, 2022 03:49:37 PM
Last File Modification TimeDec 11, 2023 04:00:41 PM

MARC Record

LEADER06831cam a2200769 i 4500
001on1045428992
003OCoLC
00520231006123411.0
006m     o  d        
007cr unu||||||||
008180723s2018    xx a    o     001 0 eng d
020 |a 9780134850771
020 |a 0134850777
020 |a 1509307761
020 |a 9781509307760
020 |a 9780134850801|q (electronic bk.)
020 |a 0134850807|q (electronic bk.)
020 |a 9780134850757|q (electronic bk.)
020 |a 0134850750|q (electronic bk.)
0291 |a GBVCP|b 1029872740
035 |a (OCoLC)1045428992
037 |a CL0500000980|b Safari Books Online
037 |a CC72AF2E-9B94-433A-8C86-21470EAEA3B5|b OverDrive, Inc.|n http://www.overdrive.com
040 |a UMI|b eng|e rda|e pn|c UMI|d STF|d OCLCF|d TOH|d DEBBG|d CEF|d G3B|d S9I|d UAB|d UKAHL|d TEFOD|d OCLCO|d CZL|d OCLCQ|d OCLCO|d EBLCP|d YDX|d OCLCQ|d YWS|d OCLCQ|d OCLCA|d OCLCO
049 |a TKLA
050 4|a QA76.73.C154
08204|a 005.133|2 23
1001 |a Sharp, John,|d 1964-|e author.|0 http://id.loc.gov/authorities/names/n2001015300
24510|a Microsoft Visual C# step by step /|c John Sharp.
2463 |a Microsoft Visual C sharp step by step
24630|a Visual C# step by step
250 |a Ninth edition.
264 1|a [Place of publication not identified] :|b Pearson Education :|b Microsoft Press,|c [2018]
264 4|c ©2018
300 |a 1 online resource (1 volume) :|b illustrations
336 |a text|b txt|2 rdacontent
337 |a computer|b c|2 rdamedia
338 |a online resource|b cr|2 rdacarrier
347 |a data file
4901 |a Step-by-step
500 |a Includes index.
5050 |a Cover Page -- Title Page -- Copyright Page -- Contents at a Glance -- Contents -- Acknowledgments -- About the Author -- Introduction -- PART I INTRODUCING MICROSOFT VISUAL C# AND MICROSOFT VISUAL STUDIO 2017 -- Chapter 1 Welcome to C# -- Beginning programming with the Visual Studio 2017 environment -- Writing your first program -- Using namespaces -- Creating a graphical application -- Examining the Universal Windows Platform app -- Adding code to the graphical application -- Summary -- Quick reference -- Chapter 2 Working with variables, operators, and expressions
5058 |a Understanding statements -- Using identifiers -- Identifying keywords -- Using variables -- Naming variables -- Declaring variables -- Specifying numeric values -- Working with primitive data types -- Unassigned local variables -- Displaying primitive data type values -- Using arithmetic operators -- Operators and types -- Examining arithmetic operators -- Controlling precedence -- Using associativity to evaluate expressions -- Associativity and the assignment operator -- Incrementing and decrementing variables -- Prefix and postfix -- Declaring implicitly typed local variables -- Summary
5058 |a Quick reference -- Chapter 3 Writing methods and applying scope -- Creating methods -- Declaring a method -- Returning data from a method -- Using expression-bodied methods -- Calling methods -- Specifying the method call syntax -- Returning multiple values from a method -- Applying scope -- Defining local scope -- Defining class scope -- Overloading methods -- Writing methods -- Refactoring code -- Nesting methods -- Using optional parameters and named arguments -- Defining optional parameters -- Passing named arguments -- Resolving ambiguities with optional parameters and named arguments
5058 |a Chapter 5 Using compound assignment and iteration statements -- Using compound assignment operators -- Writing while statements -- Writing for statements -- Understanding for statement scope -- Writing do statements -- Summary -- Quick reference -- Chapter 6 Managing errors and exceptions -- Coping with errors -- Trying code and catching exceptions -- Unhandled exceptions -- Using multiple catch handlers -- Catching multiple exceptions -- Filtering exceptions -- Propagating exceptions -- Using checked and unchecked integer arithmetic -- Writing checked statements -- Writing checked expressions
520 |a Your hands-on guide to Microsoft Visual C# fundamentals with Visual Studio 2017 Expand your expertise--and teach yourself the fundamentals of programming with the latest version of Visual C# with Visual Studio 2017. If you are an experienced software developer, you'll get all the guidance, exercises, and code you need to start building responsive, scalable Windows 10 and Universal Windows Platform applications with Visual C#. Discover how to: Quickly start creating Visual C# code and projects with Visual Studio 2017 Work with variables, operators, expressions, and methods Control program flow with decision and iteration statements Build more robust apps with error, exception, and resource management Master the essentials of Visual C# object-oriented programming Use enumerations, structures, generics, collections, indexers, and other advanced features Create in-memory data queries with LINQ query expressions Improve application throughput and response time with asynchronous methods Decouple application logic and event handling Streamline development with new app templates Implement the Model-View-ViewModel (MVVM) pattern Build Universal Windows Platform apps that smoothly adapt to PCs, tablets, and Windows phones Integrate Microsoft Azure cloud databases and RESTful web services.
5880 |a Online resource; title from title page (Safari, viewed July 18, 2018).
590 |a O'Reilly|b O'Reilly Online Learning: Academic/Public Library Edition
63000|a Microsoft Visual C#.
63007|a Microsoft Visual C#|2 fast
650 0|a Object-oriented programming (Computer science)|0 http://id.loc.gov/authorities/subjects/sh87007503
650 0|a C# (Computer program language)|0 http://id.loc.gov/authorities/subjects/sh2001001705
650 0|a Visual programming (Computer science)|0 http://id.loc.gov/authorities/subjects/sh87006583
650 6|a Programmation orientée objet (Informatique)
650 6|a C# (Langage de programmation)
650 6|a Programmation visuelle.
650 7|a C# (Computer program language)|2 fast
650 7|a Object-oriented programming (Computer science)|2 fast
650 7|a Visual programming (Computer science)|2 fast
830 0|a Step by step (Redmond, Wash.)|0 http://id.loc.gov/authorities/names/no96016837
85640|u https://ezproxy.knoxlib.org/login?url=https://learning.oreilly.com/library/view/~/9780134850771/?ar
938 |a ProQuest Ebook Central|b EBLB|n EBL7117822
938 |a YBP Library Services|b YANK|n 18082100
938 |a ProQuest Ebook Central|b EBLB|n EBL7054200
938 |a Askews and Holts Library Services|b ASKH|n AH37814792
938 |a Askews and Holts Library Services|b ASKH|n AH37293970
994 |a 92|b TKL