| Tag |
First Indicator |
Second Indicator |
Subfields |
| LEADER |
00000cam a2200000 i 4500 |
| 001 |
in00004672621 |
| 006 |
m o d |
| 007 |
cr cnu---unuuu |
| 008 |
221022s2022 caua o 001 0 eng d |
| 005 |
20260123225902.6 |
| 019 |
|
|
|a 1348479185
|
| 020 |
|
|
|a 9781484286197
|q (electronic bk.)
|
| 020 |
|
|
|a 1484286197
|q (electronic bk.)
|
| 020 |
|
|
|z 9781484286180
|
| 020 |
|
|
|z 1484286189
|
| 024 |
7 |
|
|a 10.1007/978-1-4842-8619-7
|2 doi
|
| 035 |
|
|
|a (OCoLC)1348488174
|z (OCoLC)1348479185
|
| 037 |
|
|
|a 9781484286197
|b O'Reilly Media
|
| 040 |
|
|
|a EBLCP
|b eng
|e rda
|e pn
|c EBLCP
|d ORMDA
|d GW5XE
|d YDX
|d STF
|d OCLCF
|d UKAHL
|
| 049 |
|
|
|a TXAM
|
| 050 |
|
4 |
|a QA76.73.C154
|
| 072 |
|
7 |
|a UMP
|2 bicssc
|
| 072 |
|
7 |
|a COM051380
|2 bisacsh
|
| 072 |
|
7 |
|a UMP
|2 thema
|
| 082 |
0 |
4 |
|a 005.13/3
|2 23/eng/20221025
|
| 100 |
1 |
|
|a Byrne, Gerard,
|e author.
|
| 245 |
1 |
0 |
|a Target C# :
|b Simple Hands-On Programming with Visual Studio 2022 /
|c Gerard Byrne.
|
| 264 |
|
1 |
|a Berkeley, CA :
|b Apress L. P.,
|c 2022.
|
| 300 |
|
|
|a 1 online resource (xxi, 1078 pages) :
|b illustrations (chiefly color)
|
| 336 |
|
|
|a text
|b txt
|2 rdacontent
|
| 337 |
|
|
|a computer
|b c
|2 rdamedia
|
| 338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
| 500 |
|
|
|a Includes index.
|
| 520 |
|
|
|a So, you want to learn C# and Visual Studio 2022, but are a bit intimidated? Don't be. Programming is within your grasp! Programmers at any level have to fully understand, and more importantly, be able to code the core constructs. It is impossible to use complex programming concepts such as classes before understanding what methods and variables and their data types are. Once there is a foundation built on the basics, then all other topics can fall in line. While it is a forgone conclusion that languages change with the introduction of new features, the core concepts do not. Even large enterprises do not always update to the latest versions of languages and frameworks; their "backbone" applications have been developed to work, regardless. More than ever, enterprises need developers who can master and apply the core programming concepts and then be "up-skilled" with newer language levels and features as they integrate into the company. This book builds from the ground up. You will begin with an introduction to programming, learning the foundational concepts needed to become a C# programmer. You will then put to practice a wide range of programming concepts, including data types, selection, iteration, arrays, methods, classes and objects, serialization, file handling, and string handling. You will learn enough to develop applications that emulate commercial application code. Once you've got the foundational concepts, get ready to dive into common programming routines, including linear search, binary search, bubble sort and insertion sort, and use C# to code them. Code example annotations supplement the learning and are designed to enhance learning while also explaining why the code does what it does. This book: Teaches core programming through well-explained and simple-to-follow instructions Reinforces programming skills through the use of coding examples that extend user learnings Explains theoretical programming concepts; applies them practically with code examples Introduces the latest Microsoft C# Integrated Development Environment (Visual Studio 2022) Enlists clear, precise, and easy-to-understand language to assist readers of all levels and experience Uses a mix of "theory" and practical information that is designed to be friendly and engaging Who This Book Is For Beginners, those refreshing their C# skills, or those moving from another programming language. No skills or previous knowledge is required. Readers will need to download Visual Studio 2022 Community Edition as this is what the book code has been based on, but they could use other Integrated Development Environments.
|
| 588 |
|
|
|a Description based upon print version of record.
|
| 505 |
0 |
|
|a Intro -- Table of Contents -- About the Author -- Acknowledgments -- Introduction -- Chapter 1: .NET -- .NET: What Is It? -- .NET Core: What Is It? -- C# Language Versioning -- .NET and C# Compilation Process -- Compile Time and Runtime -- Framework and Library -- Library -- Framework -- Managed and Unmanaged Code -- Chapter Summary -- Chapter 2: Software Installation -- About the .NET Framework -- Installing the .NET Framework -- Verify the .NET Framework Installation -- Installing Visual Studio -- Verify the Visual Studio Installation -- Chapter Summary -- Chapter 3: Introduction
|
| 505 |
8 |
|
|a Computer Program -- Programming Languages -- A Computer Program: A Recipe -- Type in C# -- The Basic Operations of a Computer -- C# Program Application Formats -- Format 1: Console Application -- Format 2: .NET MAUI -- Format 3: ASP.NET Web Applications -- The Structure of a C# Program -- Namespaces -- Classes -- Naming a Class: Class Identifiers -- Chapter Summary -- Chapter 4: Input and Output -- Write to and Read from the Console -- Change Console Display Settings -- Chapter Summary -- Chapter 5: Commenting Code -- C# Single-Line Comments -- New .NET 6 Templates -- C# Multiple-Line Comments
|
| 505 |
8 |
|
|a Chapter Summary -- Chapter 6: Data Types -- Data Types, Variables, and Conversion -- Data Types -- Conversion from One Data Type to Another -- Converting -- Something a Little Different with Our Variables -- C# 8 Nullable Reference Types -- Chapter Summary -- Chapter 7: Casting and Parsing -- Data Types, Casting, and Parsing -- Chapter Summary -- Chapter 8: Arithmetic -- Arithmetic Operations -- Common Arithmetic Operators -- Integer Division -- Solution Explorer and Project Analysis -- Other Operators -- Plus Equals ( +=) -- Minus Equals ( -=) -- Multiply Equals ( *=) -- Divide Equals ( /=)
|
| 505 |
8 |
|
|a Square Root -- Chapter Summary -- Chapter 9: Selection -- Arithmetic Operations -- Selection -- Comparison Operators -- The if Construct -- The if-else Construct -- The if else if Construct -- The switch Construct -- The switch Construct Using when -- switch with Strings -- switch with Strings -- Additional Example -- Logical Operators -- Using the AND Operator -- Using the OR Operator -- Using the NOT Operator -- Conditional Operator (Ternary Operator) -- Nested Ternary Conditional Operator -- Chapter Summary -- Chapter 10: Iteration -- Iteration and Loops -- Introduction to Iteration
|
| 505 |
8 |
|
|a For Loop -- Break Statement -- Continue Statement -- While Loop -- Break Statement -- Continue Statement -- Do (While) Loop -- Break Statement -- Continue Statement -- Chapter Summary -- Chapter 11: Arrays -- Arrays: A Data Structure -- Single-Dimensional Arrays -- Choice 1: Declaring and Creating an Array in Two Stages -- Choice 2: Declaring and Creating an Array in One Stage -- Referencing the Array Elements -- foreach Loop -- IndexOutOfBounds Exception -- Ranges and Indices: C# 8 and Above -- Range -- Chapter Summary -- Chapter 12: Methods -- Methods: Modularization
|
| 630 |
0 |
0 |
|a Microsoft .NET Framework.
|
| 630 |
0 |
7 |
|a Microsoft .NET Framework.
|2 fast
|0 (OCoLC)fst01020083
|
| 650 |
|
0 |
|a C# (Computer program language)
|
| 650 |
|
0 |
|a Internet programming.
|
| 650 |
|
7 |
|a C# (Computer program language)
|2 fast
|0 (OCoLC)fst00843284
|
| 650 |
|
7 |
|a Internet programming.
|2 fast
|0 (OCoLC)fst00977281
|
| 776 |
0 |
8 |
|i Print version:
|a Byrne, Gerard
|t Target C#
|d Berkeley, CA : Apress L. P.,c2022
|z 9781484286180
|
| 856 |
4 |
0 |
|u https://proxy.library.tamu.edu/login?url=https://go.oreilly.com/TAMU/library/view/-/9781484286197/?ar
|z Connect to the full text of this electronic book
|t 0
|
| 955 |
|
|
|a Safari/O'Reilly ebooks
|
| 994 |
|
|
|a 92
|b TXA
|
| 999 |
f |
f |
|s 191d9a9e-ef28-42d8-873e-f9973ba6cd81
|i 61683a6f-d8ab-4517-9a6b-a6cd37a63709
|t 0
|
| 952 |
f |
f |
|a Texas A&M University
|b College Station
|c Electronic Resources
|s www_evans
|d Available Online
|t 0
|e QA76.73.C154
|h Library of Congress classification
|
| 998 |
f |
f |
|a QA76.73.C154
|t 0
|l Available Online
|