Details

Professional Visual Basic 2012 and .NET 4.5 Programming


Professional Visual Basic 2012 and .NET 4.5 Programming


1. Aufl.

von: Bill Sheldon, Billy Hollis, Rob Windsor, David McCarter, Gastón C. Hillar, Todd Herman

38,99 €

Verlag: Wiley
Format: EPUB
Veröffentl.: 13.12.2012
ISBN/EAN: 9781118332139
Sprache: englisch
Anzahl Seiten: 912

DRM-geschütztes eBook, Sie benötigen z.B. Adobe Digital Editions und eine Adobe ID zum Lesen.

Beschreibungen

<b>Explore Visual Basic 2012 and .NET 4.5 with this fully updated resource</b><br /> <br /> <p>After a quick review of the of introductory topics of Visual Basic 2012 and .NET 4.5, this book moves quickly into advanced topics such as data access with ADO.NET, security, ASP.NET web programming with Visual Basic, Windows workflow, and threading. You'll explore the essential Visual Basic 2012 functions you need, including .NET features such as LINQ, WCF, and more. Plus, you'll examine exception handling and debugging, Visual Studio features, and deployment.</p> <ul> <li>Puts the new Async keyword and Iterators to work</li> <li>Explores new options and interfaces presented by Windows 8 development and WinRT</li> <li>Continues strong coverage of core language elements and tools and creating componentized applications</li> </ul> <p>This updated version of <i>Professional Visual Basic 2012 and .NET 4.5</i> retains its expert author team, including one of the best-known and respected Microsoft Visual Basic MVPs, Bill Sheldon, and Microsoft Regional Director “Software Legend” Billy Hollis.</p>
<p>INTRODUCTION xxxi</p> <p><b>PART I: LANGUAGE CONSTRUCTS AND ENVIRONMENT</b></p> <p><b>CHAPTER 1: VISUAL STUDIO 2012 3</b></p> <p>Visual Studio 2012 4</p> <p>Visual Basic Keywords and Syntax 5</p> <p>Console Applications 10</p> <p>Creating a Project from a Project Template 11</p> <p>The Solution Explorer 14</p> <p>Project Properties 15</p> <p>Assembly Information Screen 16</p> <p>Compiler Settings 18</p> <p>Debug Properties 21</p> <p>References 23</p> <p>Resources 24</p> <p>Settings 26</p> <p>Other Project Property Tabs 27</p> <p>Project ProVB_VS2012 28</p> <p>Enhancing a Sample Application 31</p> <p>Customizing the Code 33</p> <p>Building Applications 44</p> <p>Running an Application in the Debugger 45</p> <p>Reusing Your First Windows Form 52</p> <p>Useful Features of Visual Studio 2012 52</p> <p>The Task List 52</p> <p>Server Explorer 53</p> <p>Class Diagrams 54</p> <p>Summary 56</p> <p><b>CHAPTER 2: THE COMMON LANGUAGE RUNTIME 57</b></p> <p>Framework Profi les and Platforms 58</p> <p>Client and Full Framework Profi les 59</p> <p>Framework for Metro 59</p> <p>Silverlight, Windows Phone, and Others 60</p> <p>.NET 4.5 Portable Class Library 60</p> <p>Elements of a .NET Application 61</p> <p>Types 61</p> <p>Modules 62</p> <p>Assemblies 63</p> <p>Cross-Language Integration 65</p> <p>The Common Type System 65</p> <p>Metadata 66</p> <p>The Reflection API 69</p> <p>IL Disassembler 70</p> <p>Memory Management 71</p> <p>Traditional Garbage Collection 72</p> <p>Faster Memory Allocation for Objects 77</p> <p>Garbage Collector Optimizations 79</p> <p>Namespaces 81</p> <p>What Is a Namespace? 81</p> <p>Namespaces and References 84</p> <p>Common Namespaces 86</p> <p>Importing and Aliasing Namespaces 86</p> <p>Aliasing Namespaces 89</p> <p>Referencing Namespaces in ASP.NET 89</p> <p>Creating Your Own Namespaces 90</p> <p>The My Keyword 93</p> <p>My.Application 94</p> <p>My.Computer 97</p> <p>My.Resources 99</p> <p>My.User 99</p> <p>Extending the My Namespace 100</p> <p>Summary 102</p> <p><b>CHAPTER 3: OBJECTS AND VISUAL BASIC 103</b></p> <p>Object-Oriented Terminology 105</p> <p>Objects, Classes, and Instances 105</p> <p>Composition of an Object 105</p> <p>System.Object 108</p> <p>Working With Visual Basic Types 109</p> <p>Value and Reference Types 109</p> <p>Primitive Types 112</p> <p>Commands: Conditional 114</p> <p>If Then 114</p> <p>Comparison Operators 115</p> <p>Select Case 117</p> <p>Value Types (Structures) 117</p> <p>Boolean 118</p> <p>Integer Types 119</p> <p>Unsigned Types 120</p> <p>Decimal Types 121</p> <p>Char and Byte 123</p> <p>DateTime 124</p> <p>Reference Types (Classes) 125</p> <p>The Object Class 125</p> <p>The String Class 126</p> <p>The DBNull Class and IsDBNull Function 130</p> <p>Parameter Passing 131</p> <p>ParamArray 132</p> <p>Variable Scope 133</p> <p>Working with Objects 134</p> <p>Objects Declaration and Instantiation 134</p> <p>Object References 135</p> <p>Early Binding versus Late Binding 136</p> <p>Data Type Conversions 137</p> <p>Performing Explicit Conversions 138</p> <p>Creating Classes 143</p> <p>Basic Classes 143</p> <p>Handling Events 152</p> <p>Handling Multiple Events 153</p> <p>The WithEvents Keyword 154</p> <p>Raising Events 154</p> <p>Declaring and Raising Custom Events 155</p> <p>Receiving Events with WithEvents 156</p> <p>Receiving Events with AddHandler 158</p> <p>Constructor Methods 160</p> <p>Object-Oriented Concepts 161</p> <p>Overloading Methods 161</p> <p>Overloading Constructor Methods 164</p> <p>Shared Methods, Variables, and Events 165</p> <p>Operator Overloading 169</p> <p>Delegates 172</p> <p>Summary 176</p> <p><b>CHAPTER 4: CUSTOM OBJECTS 179</b></p> <p>Inheritance 180</p> <p>When to Use Inheritance 181</p> <p>Implementing Inheritance 183</p> <p>Interacting with the Base Class, Yourself, and Your Class 202</p> <p>Constructors 206</p> <p>Object Scope 209</p> <p>Events and Inheritance 211</p> <p>Shared Methods 213</p> <p>Creating an Abstract Base Class 213</p> <p>Multiple Interfaces 216</p> <p>Object Interfaces 216</p> <p>Abstract Interfaces 217</p> <p>Abstraction 225</p> <p>Encapsulation 228</p> <p>Polymorphism 228</p> <p>Method Signatures 228</p> <p>Implementing Polymorphism 229</p> <p>Summary 235</p> <p><b>CHAPTER 5: ADVANCED LANGUAGE CONSTRUCTS 237</b></p> <p>Preparing the Sample Application 238</p> <p>Lambda Expressions 240</p> <p>Creating a Lambda Expression Subroutine 241</p> <p>Creating a Lambda Expression Function 242</p> <p>Using Lambda Expressions 243</p> <p>Handling Events with Lambdas 244</p> <p>LINQ with Lambdas 245</p> <p>Async and Await 247</p> <p>The Core Concept 248</p> <p>Using Async and Await 252</p> <p>Iterators 256</p> <p>The Core Concept 256</p> <p>Using Iterators 259</p> <p>Summary 261</p> <p><b>CHAPTER 6: EXCEPTION HANDLING AND DEBUGGING 263</b></p> <p>System.Exception 264</p> <p>Handling Exceptions 265</p> <p>Try, Catch, and Finally 265</p> <p>The Throw Keyword 267</p> <p>The Exit Try Statement 268</p> <p>Using Exception Properties 269</p> <p>Logging Errors 273</p> <p>The Event Log 273</p> <p>Using the Trace and Debug Objects 275</p> <p>Summary 278</p> <p><b>PART II: BUSINESS OBJECTS AND DATA ACCESS</b></p> <p><b>CHAPTER 7: ARRAYS, COLLECTIONS, AND GENERICS 281</b></p> <p>Arrays 282</p> <p>Multidimensional Arrays 284</p> <p>The UBound Function 284</p> <p>The ReDim Statement 285</p> <p>The Preserve Keyword 286</p> <p>Collections 286</p> <p>Iterative Statements 288</p> <p>Boxing 291</p> <p>Generics 292</p> <p>Using Generics 293</p> <p>Nullable Types 294</p> <p>Generic Types 295</p> <p>Generic Methods 298</p> <p>Creating Generics 300</p> <p>Generic Types 300</p> <p>Generic Methods 307</p> <p>Constraints 308</p> <p>Generics and Late Binding 311</p> <p>Covariance and Contravariance 312</p> <p>Summary 314</p> <p><b>CHAPTER 8: USING XML WITH VISUAL BASIC 315</b></p> <p>An Introduction to XML 316</p> <p>XML Serialization 318</p> <p>Serializing 318</p> <p>Deserializing 320</p> <p>Source Code Style Attributes 322</p> <p>System.Xml Document Support 324</p> <p>XML Stream-Style Parsers 325</p> <p>Document Object Model (DOM) 337</p> <p>LINQ to XML 342</p> <p>LINQ Helper XML Objects 343</p> <p>XML Literals 347</p> <p>Querying XML Documents 349</p> <p>Reading and Writing XML Documents 351</p> <p>XSL Transformations 354</p> <p>XSLT Transforming between XML Standards 357</p> <p>Other Classes and Interfaces in System.Xml.Xsl 360</p> <p>XML in ASP.NET 361</p> <p>The XmlDataSource Server Control 361</p> <p>The XmlDataSource Control’s Namespace Problem 365</p> <p>The Xml Server Control 366</p> <p>Summary 368</p> <p><b>CHAPTER 9: ADO.NET AND LINQ 369</b></p> <p>ADO.NET Architecture 371</p> <p>Basic ADO.NET Features 372</p> <p>Common ADO.NET Tasks 372</p> <p>Basic ADO.NET Namespaces and Classes 377</p> <p>ADO.NET Components 378</p> <p>.NET Data Providers 380</p> <p>Connection Object 380</p> <p>Command Object 381</p> <p>Using Stored Procedures with Command Objects 382</p> <p>DataReader Object 385</p> <p>Executing Commands Asynchronously 387</p> <p>DataAdapter Objects 389</p> <p>SQL Server .NET Data Provider 394</p> <p>OLE DB .NET Data Provider 394</p> <p>The DataSet Component 395</p> <p>DataTableCollection 395</p> <p>DataRelationCollection 395</p> <p>ExtendedProperties 396</p> <p>Creating and Using DataSet Objects 397</p> <p>ADO.NET DataTable Objects 398</p> <p>Advanced ADO.NET Features of the DataSet and DataTable Objects 399</p> <p>Working with the Common Provider Model 401</p> <p>Connection Pooling in ADO.NET 403</p> <p>Transactions and System.Transactions 403</p> <p>Creating Transactions 403</p> <p>Creating Resource Managers 405</p> <p>Summary 406</p> <p><b>CHAPTER 10: DATA ACCESS WITH THE ENTITY FRAMEWORK 407</b></p> <p>Object-Relational Mapping 408</p> <p>Entity Framework Architecture 408</p> <p>Conceptual Model 410</p> <p>Storage Model 416</p> <p>Mapping Model 417</p> <p>LINQ to Entities 417</p> <p>The ObjectContext 418</p> <p>Mapping Objects to Entities 419</p> <p>Simple Mapping 419</p> <p>Using a Single Table for Multiple Objects 422</p> <p>Updating the Model 425</p> <p>Summary 426</p> <p><b>CHAPTER 11: SERVICES (XML/WCF) 429</b></p> <p>Web Services 430</p> <p>How This All Fits Together 431</p> <p>What Makes a WCF Service 431</p> <p>The Larger Move to SOA 432</p> <p>Capabilities of WCF 433</p> <p>Contracts and Metadata 434</p> <p>Working with the WS-* Protocols 434</p> <p>Building a WCF Service 436</p> <p>Creating the Interface 437</p> <p>Utilizing the Interface 438</p> <p>Hosting the WCF Service in a Console Application 439</p> <p>Reviewing the WSDL Document 443</p> <p>Building a WCF Consumer 445</p> <p>Adding a Service Reference 445</p> <p>Reviewing the Reference 447</p> <p>Configuration File Changes 449</p> <p>Writing the Consumption Code 451</p> <p>Working with Data Contracts 453</p> <p>Namespaces 455</p> <p>Building the Host 456</p> <p>Building the Consumer 456</p> <p>Looking at WSDL and the Schema for</p> <p>HelloCustomerService 459</p> <p>Summary 461</p> <p><b>PART III: SPECIALIZED TOPICS AND LIBRARIES</b></p> <p><b>CHAPTER 12: XAML ESSENTIALS 465</b></p> <p>Features Shared by All XAML Platforms 466</p> <p>The XAML Markup Language 466</p> <p>A Sample Page of XAML 467</p> <p>Code-Behind and Naming of Elements 468</p> <p>Getting Our Terminology Straight 469</p> <p>The UIElement and FrameworkElement Classes 469</p> <p>Commonly Used Elements 469</p> <p>Property Setting: Attribute Syntax vs. Element Syntax 470</p> <p>Referencing Additional Namespaces in XAML 471</p> <p>The Layout System 472</p> <p>Measurement Units 472</p> <p>Panels 472</p> <p>Sizing and Layout of Elements 479</p> <p>Controls and Content 484</p> <p>Content Controls 484</p> <p>Implications of the Content Model 485</p> <p>Brushes 486</p> <p>Resources in XAML 488</p> <p>The Resources Property 488</p> <p>More About Resource Dictionaries 489</p> <p>Scope of a Resource 489</p> <p>Data Binding 489</p> <p>Data Binding: Fundamental Concepts 490</p> <p>The Binding Class and Binding Expressions 491</p> <p>DataContext 492</p> <p>Data Bindings between XAML Elements 492</p> <p>Other Ways to Specify a Data Source 493</p> <p>Property Change Notifi cation 494</p> <p>Data Conversion during Binding 494</p> <p>Dealing with Binding Failures 497</p> <p>Complex Binding Paths 498</p> <p>Working with Data Bindings in Code 498</p> <p>Data Templates and ItemControls 499</p> <p>Setting the Stage with Some Sample Data 500</p> <p>ItemControls 501</p> <p>The XAML ListBox 501</p> <p>Data Templates 503</p> <p>Data Binding in Data Templates 506</p> <p>Switching between Data Templates 507</p> <p>Changing Layout of ListBox Items with ItemsPanel 510</p> <p>Additional ItemControls 510</p> <p>Styles 510</p> <p>What is a Style? 510</p> <p>Determining the Scope of a Style 511</p> <p>Implicit Styles 512</p> <p>BasedOn Styles 512</p> <p>ItemContainerStyle 512</p> <p>Control Templates 513</p> <p>“Lookless” Controls 513</p> <p>Reskinning a CheckBox 514</p> <p>Creating Control Templates 515</p> <p>Summary 515</p> <p><b>CHAPTER 13: CREATING XAML APPLICATIONS</b> <b>FOR WINDOWS 8 517</b></p> <p>How XAML Diff ers in Windows 8 518</p> <p>Missing Elements 518</p> <p>Old Elements Replaced by Functional Equivalents in Windows 8 519</p> <p>Syntax Diff erences 519</p> <p>Using Page as the Root Visual Element 520</p> <p>Windows 8 UI Conventions 520</p> <p>UI/UX Guidelines 522</p> <p>Interaction between Your App and the Windows 8 OS 522</p> <p>Chromeless Apps 522</p> <p>Snapped Views 522</p> <p>Typeface and Font Guidelines 523</p> <p>Sizing and Layout of Visual Elements in an App 523</p> <p>New Visual Elements in Windows 8 524</p> <p>AppBar 524</p> <p>ListView, GridView, and FlipView Controls 527</p> <p>Pickers 542</p> <p>ProgressRing 543</p> <p>ToggleSwitch 544</p> <p>Other New Elements 544</p> <p>Old Elements with New Usage 545</p> <p>Changes to the Visual Designer in Visual Studio 2012 547</p> <p>Better Resource Selector 547</p> <p>Common vs. Advanced Property Categories 548</p> <p>Transform Properties 549</p> <p>Animation 549</p> <p>Application Templates in Visual Studio 2012 551</p> <p>Split App 552</p> <p>Grid App 552</p> <p>Layout Aware Pages 555</p> <p>Items in the Common Folder 555</p> <p>StandardStyles.xaml 555</p> <p>Online Documentation for Grid App and Split App Templates 556</p> <p>Implementing a Live Tile 557</p> <p>Implementing Contracts 558</p> <p>Summary 560</p> <p><b>CHAPTER 14: APPLICATIONS WITH ASP.NET, MVC, JAVASCRIPT, AND HTML 561</b></p> <p>Visual Studio Support for ASP.NET 562</p> <p>Web Site and Web Application Projects 562</p> <p>Web Server Options 562</p> <p>Server-Side Development 563</p> <p>Web Forms 563</p> <p>Web Pages and Razor 586</p> <p>ASP.NET MVC 602</p> <p>Client-Side Web Development 624</p> <p>Web Development with HTML and JavaScript 624</p> <p>Building Windows 8 Style Apps with HTML and JavaScript 638</p> <p>Summary 644</p> <p><b>CHAPTER 15: LOCALIZATION 645</b></p> <p>Cultures and Regions 646</p> <p>Understanding Culture Types 647</p> <p>Looking at Your Thread 647</p> <p>Declaring Culture Globally in ASP.NET 649</p> <p>Adopting Culture Settings in ASP.NET 650</p> <p>Translating Values and Behaviors 652</p> <p>Understanding Diff erences in Dates 652</p> <p>Differences in Numbers and Currencies 654</p> <p>Understanding Diff erences in Sorting 656</p> <p>ASP.NET Resource Files 658</p> <p>Making Use of Local Resources 658</p> <p>Localization for Windows Store Apps 663</p> <p>Summary 665</p> <p><b>CHAPTER 16: APPLICATION SERVICES 667</b></p> <p>Using IIS for Application Services 668</p> <p>Windows Services 668</p> <p>Characteristics of a Windows Service 669</p> <p>Interacting with Windows Services 669</p> <p>Creating a Windows Service 671</p> <p>The .NET Framework Classes for Windows Services 671</p> <p>Other Types of Windows Services 674</p> <p>Creating a Windows Service in Visual Basic 675</p> <p>Creating a File Watcher Service 676</p> <p>Creating a Solution for the Windows Service 677</p> <p>Adding .NET Components to the Service 677</p> <p>Installing the Service 680</p> <p>Starting the Service 681</p> <p>Uninstalling the Service 682</p> <p>Communicating with the Service 683</p> <p>The ServiceController Class 683</p> <p>Integrating a ServiceController into the Example 685</p> <p>More about ServiceController 686</p> <p>Custom Commands 686</p> <p>Passing Strings to a Service 688</p> <p>Debugging the Service 689</p> <p>Summary 690</p> <p><b>CHAPTER 17: ASSEMBLIES AND REFLECTION 693</b></p> <p>Assemblies 694</p> <p>The Manifest 694</p> <p>Assembly Identity 696</p> <p>Referenced Assemblies 700</p> <p>Assemblies and Deployment 701</p> <p>Application-Private Assemblies 701</p> <p>Shared Assemblies 701</p> <p>Versioning Issues 703</p> <p>Application Isolation 703</p> <p>Side-By-Side Execution 704</p> <p>Self-Describing Components 704</p> <p>Version Policies 704</p> <p>Configuration Files 706</p> <p>Basics of Refl ection 709</p> <p>The Assembly Class 710</p> <p>Getting Currently Loaded Assemblies 711</p> <p>The Type Class 711</p> <p>Dynamic Loading of Assemblies 713</p> <p>The LoadFrom Method of the Assembly Class 713</p> <p>Dynamic Loading Example 714</p> <p>Putting Assemblies to Work 716</p> <p>Summary 716</p> <p><b>CHAPTER 18: SECURITY IN THE .NET FRAMEWORK 719</b></p> <p>Security Concepts and Defi nitions 720</p> <p>Windows Store Projects 722</p> <p>The System.Security.Permissions Namespace 723</p> <p>Code Access Permissions 727</p> <p>Identity Permissions 728</p> <p>Role-Based Permissions 728</p> <p>Managing Code Access Permission Sets 731</p> <p>User Access Control 734</p> <p>Defining Your Application UAC Settings 735</p> <p>Security Tools 737</p> <p>Exceptions Using the SecurityException Class 738</p> <p>Encryption Basics 739</p> <p>Hash Algorithms 741</p> <p>Cryptographic Hash Algorithms 741</p> <p>Symmetric Key Encryption 744</p> <p>PKCS 747</p> <p>Secure Sockets Layer 752</p> <p>Summary 754</p> <p><b>CHAPTER 19: PARALLEL PROGRAMMING USING</b> <b>TASKS AND THREADS 757</b></p> <p>Launching Parallel Tasks 758</p> <p>System.Threading.Tasks.Parallel Class 758</p> <p>Parallel.Invoke 759</p> <p>Transforming Sequential Code to Parallel Code 764</p> <p>Detecting Hotspots 765</p> <p>Measuring Speedups Achieved by Parallel Execution 767</p> <p>Understanding Parallel 769</p> <p>Parallelizing Loops 770</p> <p>Parallel.For 770</p> <p>Parallel.ForEach 775</p> <p>Exiting from Parallel Loops 781</p> <p>Specifying the Desired Degree of Parallelism 786</p> <p>ParallelOptions 786</p> <p>Understanding Hardware Threads and Logical Cores 788</p> <p>Creating and Managing Tasks 788</p> <p>System.Threading.Tasks.Task 790</p> <p>Understanding a Task’s Life Cycle 791</p> <p>Using Tasks to Parallelize Code 793</p> <p>Returning Values from Tasks 802</p> <p>Preparing the Code for Parallelism 805</p> <p>Understanding Concurrent Collection Features 807</p> <p>Transforming LINQ into PLINQ 810</p> <p>Summary 813</p> <p><b>CHAPTER 20: DEPLOYING XAML APPLICATIONS VIA</b> <b>THE WINDOWS 8 WINDOWS STORE 815</b></p> <p>A New Deployment Option for Windows 8 Apps 815</p> <p>Deployment of WinRT Apps 816</p> <p>Developer License 817</p> <p>Working with the Windows Store 817</p> <p>Getting an Account at the Windows Store 817</p> <p>Microsoft Account is Required 818</p> <p>Windows Store Account Types 818</p> <p>Steps to Obtain an Account 818</p> <p>Requirements for Apps in the Windows Store 821</p> <p>Specific Requirements 822</p> <p>General Requirements 822</p> <p>Working with the Windows Store in Visual Studio 2012 823</p> <p>Options on the Store Menu 824</p> <p>Creating an App Package 825</p> <p>Checking to See if an App Meets Requirements 826</p> <p>Deploying the App to the Windows Store 827</p> <p>Side-loading for LOB Apps in an Organization 828</p> <p>Packaging and Validation 829</p> <p>Preparing Client Machines for Side-loading 829</p> <p>The Side-loading Operation 830</p> <p>Summary 831</p> <p>INDEX 833</p>
<p><b>Bill Sheldon,</b> Visual Basic MVP for 8 years, is the Vice President of Information Technology for Rubio's Restaurants. He can be found at @NerdNotes.</p> <p><b>Billy Hollis, MVP,</b> is a developer and UX designer at Next Version Systems. He is also a well-known and prolific speaker and trainer.</p> <p><b>Rob Windsor, MVP,</b> is Lead SharePoint Consultant with Portal Solutions—a Microsoft Gold Partner.</p> <p><b>David McCarter, MVP,</b> is a principal software engineer/architect and editor-in-chief of dotNetTips.com.</p> <p><b>Gaston C. Hillar, MVP,</b> is tech leader and architect at Bootsoft Inc. He contributes to Dr. Dobbs and blogs for Intel Software Network.</p> <p><b>Todd Herman</b> is a senior software engineer at Apx Labs focused on developing a library to support the XMPP standard.</p>
<p><b>Explore Visual Basic 2012 and .NET 4.5 with this updated resource</b></p> <p>The new Visual Basic 2012 and its compatibility with .NET 4.5 require that programmers be familiar with all the latest subject matter. After a quick refresher of the basics, this must-have resource quickly dives into more advanced topics to examine the important topics, such as data access with ADO.NET, security, ASP.NET web programming with VB, Windows workflow, and threading. In-depth coverage looks at the new .NET features, including LINQ, WCF, XML, WPF, and more. Plus, you'll address exception handling and debugging, Visual Studio features, and deployment.</p> <p><i>Professional Visual Basic 2012 and .NET 4.5 Programming:</i></p> <ul> <li>Details the elements of a .NET application and discusses how to create your own namespace</li> <li>Addresses implementing inheritance and creating an abstract base class</li> <li>Highlights advanced language concepts such as lambdas, iterators, and async keywords</li> <li>Reviews designer concepts and the Win8 client</li> <li>Discusses assemblies and reflection, parallel programming using tasks and threads, and deployment</li> <li>Looks at XAML syntax, using XAML to create a window, and creating a WinRT XAML application</li> </ul> <p><b>wrox.com</b></p> <p><b>Programmer Forums</b><br />Join our Programmer to Programmer forums to ask and answer programming questions about this book, join discussions on the hottest topics in the industry, and connect with fellow programmers from around the world.</p> <p><b>Code Downloads</b><br />Take advantage of free code samples from this book, as well as code samples from hundreds of other books, all ready to use.</p> <p><b>Read More</b><br />Find articles, e-books, sample chapters, and tables of contents for hundreds of books, and more reference resources on programming topics that matter to you.</p> <p><b>Wrox Professional guides</b> are written by working developers to address everyday needs. They provide examples, practical solutions, and expert education in new technologies, all designed to help programmers do a better job.</p>

Diese Produkte könnten Sie auch interessieren:

Domain Architectures
Domain Architectures
von: Daniel J. Duffy
PDF ebook
31,99 €