Book Image

Beginning C# 7 Hands-On ??? Advanced Language Features

By : Tom Owsiak
Book Image

Beginning C# 7 Hands-On ??? Advanced Language Features

By: Tom Owsiak

Overview of this book

Beginning C# 7 Hands-On – Advanced Language Features assumes that you’ve mastered the basic elements of the C# language and that you're now ready to learn the more advanced C# language and syntax, line by line, in a working Visual Studio environment. You'll learn how to code advanced C# language topics including generics, lambda expressions, and anonymous methods. You'll learn to use query syntax to construct queries and deploy queries that perform aggregation functions. Work with C# and SQL Server 2017 to perform complex joins and stored procedures. Explore advanced file access methods, and see how to serialize and deserialize objects – all by writing working lines of code that you can run within Visual Studio. This book is designed for beginner C# developers who have mastered the basics now, and anyone who needs a fast reference to using advanced C# language features in practical coding examples. You'll also take a look at C# through web programming with web forms. By the time you’ve finished this book, you’ll know all the critical advanced elements of the C# language and how to program everything from C# generics to XML, LINQ, and your first full MVC web applications. These are the advanced building blocks that you can then combine to exploit the full power of the C# programming language, line by line.
Table of Contents (35 chapters)
Title Page
Credits
About the Author
www.PacktPub.com
Customer Feedback
Preface

Streamlining writing functions


Within the body, but above the line beginning with protected void Button1_Click..., enter the following:

private void ShowSquare(double x) => sampLabel.Text += "<br>" + (x * x);

Remember, => is an expression member. It's a function. In other words, it takes the form of a Lambda. At the end of the line, we return x * x. As you can see, this is a very streamlined way of writing functions.

Next, we need to add namespaces. So, after using System, enter the following lines:

using System.Collections.Generic;
using System.Threading;

Now, within the event for the button, we will place the following code list; so, enter this line between a set of curly braces underneath the line beginning with protected void Button1_Click...:

List<double> vals = new List<double>(new double[] { 1, 2, 4, 5, 6, 8 });

In this line, you are making a new list of double data type and then you will initialize it. You can do this a couple of ways, but you can just write an array...