在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Microsoft Visual C# 2013 Step by Step,最新资料

Microsoft Visual C# 2013 Step by Step,最新资料

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:16.26M
  • 下载次数:6
  • 浏览次数:155
  • 发布时间:2020-07-10
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.pdf
  • 所需积分:2
 

实例介绍

【实例简介】
Your hands-on guide to Visual C# fundamentals Expand your expertise—and teach yourself the fundamentals of Microsoft Visual C# 2013. If you have previous programming experience but are new to Visual C# 2013, this tutorial delivers the step-by-step guidance and coding exercises you need to master cor
MIcrosoft Microsoft visual c# 2013 Step by step John Sharp Published with the authorization of Microsoft Corporation by O'Reilly media, Inc 1005 Gravenstein Highway North Sebastopol, California 95472 Copyright@ 2013 by John Sharp All rights reserved. No part of the contents of this book may be reproduced or transmitted in any form or by any means without the written permission of the publisher. SBN:978-0-7356-8183-5 123456789LS|876543 Printed and bound in the united states of america Microsoft Press books are available through booksellers and distributors worldwide. If you need support related tothisbook,emailMicrosoftPressBookSupportatmspinput@microsoft.com.Pleasetelluswhatyouthinkof thisbookathttp://www.microsoft.com/learning/booksurvey. Microsoftandthetrademarkslistedathttp.://www.microsoft.com/about/legal/en/us/intellectualproperty/ Trademarks/ EN-US. aspx are trademarks of the microsoft group of companies. All other marks are property of their respective owners The example companies, organizations, products, domain names, email addresses, logos, people, places, and events depicted herein are fictitious. No association with any real company, organization, product, domain name, email address, logo, person, place, or event is intended or should be inferred This book expresses the authors views and opinions. The information contained in this book is provided without any express, statutory, or implied warranties. Neither the authors, O'Reilly Media, Inc, Microsoft Corporation. nor its resellers, or distributors will be held liable for any damages caused or alleged to be caused either directl or indirectly by this book Acquisitions and Developmental Editor: russell Jones Production Editor: Christopher Hearse Technical reviewer. John mueller Copyeditor: Octal Publishing, Inc Indexer: Ellen troutman Cover Design: Twist Creative. Seattle Cover Composition: Ellie Volckhausen Illustrator: Rebecca Demarest Contents at a glance Introduction ⅩX ART I INTRODUCING MICROSOFT VISUAL C# AND MICROSOFT VISUAL STUDIO 2013 HAPTER 1 Welcome to c# CHAPTER 2 Working with variables, operators, and expressions 39 ChaPTER 3 Writing methods and applying scope 65 CHAPTER 4 Using decision statements 93 CHAPTER 5 Using compound assignment and iteration statements 113 CHAPTER 6 Managing errors and exceptions 135 PART II UNDERSTANDING THE C# OBJECT MODEL CHAPTER 7 Creating and managing classes and objects 161 ChAPTeR 8 Understanding values and references 183 CHAPTER 9 Creating value types with enumerations and structures 207 CHAPTER 10 Using arrays 227 CHAPTER 11 Understanding parameter arrays 251 CHAPTER 12 Working with inheritance 263 CHAPTER 13 Creating interfaces and defining abstract classes 287 CHAPTER 14 Using garbage collection and resource management 317 PARTⅢ DEFINING EXTENSIBLE TYPES WITH C# CHAPTER 15 Implementing properties to access fields 341 CHAPTER 16 Using indexers 363 CHAPTER 17 ntroducing generic 381 CHAPTER 18 Using collections 411 CHAPTER 19 Enumerating collections 435 CHAPTER 20 Decoupling application logic and handling events 451 CHAPTER 21 Querying in-memory data by using query expressions 485 CHAPTER 22 Operator overloading 511 PART IV BUILDING PROFESSIONAL WINDOWS 8.1 APPLICATIONS WITH C# CHAPTER 23 Improving throughput by using tasks 537 CHAPTER 24 Improving response time by performing asynchronous operations 581 CHAPTER 25 Implementing the user interface for a Windows Store app 623 CHAPTER 26 isplaying and searching for data in a windows Store app 673 CHAPTER 27 Accessing a remote database from a Windows Store app 721 Index 763 Contents at a glance Contents ,ⅩX PART INTRODUCING MICROSOFT VISUAL C# AND MICROSOFT VISUAL STUDIO 2013 Chapter 1 Welcome to C# 3 Beginning programming with the Visual Studio 2013 environment Writing your first program Using namespaces 14 Creating a graphical applicatio 18 Examining the Windows Store app 30 Examining the WPF application Adding code to the graphical application 34 Summary 38 Quick Reference 38 Chapter 2 Working with variables, operators, and expressions 39 Understanding statements Using identifiers 40 Identifying keywords 40 Using variables Naming variables Declaring variables Working with primitive data types Unassigned local variables 43 Displaying primitive data type values 44 What do you think of this book? We want to hear from you! Microsoft is interested in hearing your feed back so we can continually improve our books and learning resources for you To participate in a brief online survey please visit: www.microsoft.com/learning/booksurvey/ ing arithmetic operators 52 d perators and typ es Examining arithmetic operators Controlling precedence Using associativity to evaluate expressions ..60 Associativity and the assignment operator 60 Incrementing and decrementing variables 61 Prefix and postfix 61 Declaring implicitly typed local variables 62 Summary 63 Quick Refer 64 Chapter 3 Writing methods and applying scope 65 Creating methods 65 Declaring a method .66 Returning data from a method 67 Calling methods 69 Applying scope 72 Defining local scope 72 Defining class scope 73 Overloading methods 74 Writing methods Using optional parameters and named arguments 83 Defining optional parameters 85 Passing named arguments 85 Resolving ambiguities with optional parameters and named arguments 86 Summa 91 Quick referer 92 Chapter 4 Using decision statements 93 Declaring boolean variables .93 sing boolean operators 94 Contents Understanding equality and relational operators Understanding conditional logical operators .95 Short-circuiting Summarizing operator precedence and associativity 66 Using if statements to make decisions ..97 Understanding if statement syntax Using blocks to group statements 98 Cascading if statements 99 Using switch statement 105 Understanding switch statement syntax 106 Following the switch statement rules 107 Summary 111 Quick reference ....111 Chapter 5 Using compound assignment and iteration statements 113 Using compound assignment operators 113 Writing while statements 115 Writing for Statements Understanding for statement scope 123 Writing do stateme 123 ummar 132 Quick reference 133 Chapter 6 Managing errors and exceptions 135 Coping with errors 135 Trying code and catching exceptions .136 handled Excepti 137 Using multiple catch 138 Catching multiple exceptions 139 Propagating exceptions 145 Using checked and unchecked integer arithmetic 147 Writing checked statements 148 Contents Writing checked expressions 149 Throwing exceptions 152 Using a finally block 156 ummar 158 Quick reference 158 PART UNDERSTANDING THE C# OBJECT MODEL Chapter 7 Creating and managing classes and objects 161 Understanding classification 161 The purpose of encapsulation ....162 Defining and using a class 162 Controlling accessibility 164 Working with constructors 165 Overloading constructors 167 Understanding static methods and data 175 Creating a shared field 176 Creating a static field by using the const keyword 177 Understanding static classes 177 Anonymous classes ...180 Summary .........181 Quick reference 182 Chapter 8 Understanding values and references 183 Copying value type variables and classes ....183 Understanding null values and nullable types 189 Using nullable type 190 Understanding the properties of nullable types .191 Using ref and out parameters .192 Creating ref parameters 193 Creating out parameters .193 How computer memory is organized 195 Using the stack and the heap 197 vu Contents 【实例截图】
【核心代码】

标签:

实例下载地址

Microsoft Visual C# 2013 Step by Step,最新资料

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警