Click here to Skip to main content
15,867,453 members
Articles / Programming Languages / C# 7.0
Article

New Features of C# 7.0

Rate me:
Please Sign up or sign in to vote.
4.34/5 (52 votes)
7 Oct 2016CPOL5 min read 134.6K   49   55
List of New Features introduced in C# 7.0

Introduction

C# 7.0 is planned to release in parts, Microsoft has release Most of its features with Visual Studio “15” Preview 4, it was release in last month (Aug 2016), See Release Post

Code simplification and improve performance are the main key role of this build, Tuples, Pattern matching are some of the really good features introduced. Hope you will enjoy these features and be more productive.

 Let's see new features of C# 7.0

Using the code

Tuples (with types and literals)

Return multiple values from a method is now a common practice, we generally use custom datatype, out parameters, Dynamic return type or a tuple object but here C# 7.0 brings tuple types and tuple literals for you it just return multiple values/ multiple type inform of tuple object. see below snippet

C#
( string, string, string, string) getEmpInfo()
{
    //read EmpInfo from database or any other source and just return them
    string strFirstName = "abc";
    string strAddress = "Address";
    string strCity= "City";
    string strState= "State";
     return (strFirstName, strAddress, strCity, strState); // tuple literal
}

//Just call above method and it will return multiple values 
 var empInfo= getEmpInfo();
WriteLine("Emp info as  {empInfo .Item1} {empInfo .Item2} {empInfo .Item3} {empInfo .Item4}.");

In above sample we can easily retrieve multiple values from tuples, but Item1, Item2 name are bit ir-relevant so let's assign some meaningful names before return, see below sample

C#
(string strFName, string strAdd, string strC, string strSt) getEmpInfo()
{
    //code goes here
}

//Now when you call method get values with specific name as below 
var empInfo= getEmpInfo();
WriteLine("Emp info as {empInfo.strFName} {empInfo.strAdd} {empInfo.strC} {empInfo.strSt}.");

Additionally you can return their name directly in tuple literal as below

C#
return (strFName: strFirstName, strAdd: strAddress, strCity: strC, strState: strSt);

Tuples are very useful thing where you can replace hash table or dictionary easily, even you can return multiple values for a single key, Additionally you can use it instead of List where you store multiple values at single position.

.NET also has a Tuple type (See here) but it is a reference type and that leads to performance issue, but C# 7.0 bring a Tuple with value type which is faster in performance and a mutable type.

Deconstruction

Most of the time we don't want to access whole tuple bundle or we just need internal values then we can use Deconstruction features of C# 7.0, we can easily de-construct a tuple and fetch values that we need, following snippet will clear your doubt

C#
( string strFName,  string strAdd,  string strC, string strSt) = getEmpInfo(); 
Console.WriteLine($"Address: { strAdd }, Country: { strC }");

Record Type

C# support record type, which is nothing but a container of a properties and variables, most of the time classes are full with properties and variables, we need lot of code to just declare them but with the help of Record Type you can reduce your effort, see below snippet

C#
class studentInfo
{
    string _strFName;
    string _strMName;
    string _strLName;
    studentInfo(string strFN, string strMN, string strLN){
        this._strFName = strFN;
        this._strMName = strMN;
        this._strLName = strLN;
    }
    public string StudentFName {get{ return this._strFName;}}
    public string StudentMName {get{ return this._strMName;}}
    public string StudentLName {get{ return this._strLName;}}
}

In above code we have a class with property, constructor and variable, so access and declare variable i need to write more code.

To avoid it i can use  Record Type in C#, see below snippet

C#
class studentInfo(string StudentFName, string StudentMName, string StudentLName);

That's it and we have Done !

above snippet produce same output as earlier snippet.

 

Minimizing OUT

Out parameter is very popular when we want to return multiple values from method, By nature out parameters are ref type and works as an argument, we can use it easily but the only condition is out variable should be initialized before it passed. see below snippet

C#
class SetOut
{
    void AssignVal(out string strName)
    {
        strName = "I am from OUT";
    }
    static void Main()
    {
        string strArgu;
        AssignVal(out strArgu);
        // here contents of strArgu is "I am from OUT"
    }
}

 C# 7.0 reduce your pain of writing extra code and you can just pass argument without initialize them, see below snippet

pat

C#
  static void Main()
    {
        AssignVal(out string szArgu);
        // here contents of szArgu is "I am from OUT"
    }

You can either use var as argument type instead to declare them.

Note that variable are used here, are in limited scope only, thus we can not use them outside method

Since we can define variable as argument directly, C# 7.0 gives us freedom to declare them as var also. so you don't need to worry about datatype, see below snippet

C#
  static void Main()
    {
        AssignVal(out var szArgu);
        // here contents of szArgu is "I am from OUT"
    }

 

Non-'NULL' able reference type

Null reference is really a headache for all programmers, it is a million dollar exception. If you don't check them you got runtime exception or if you check them for each object then your code goes long and long, To deal with this problem C# 7.0 come with non-nullable reference types

**I think syntax for it yet not fixed still they have release following syntax

'?' is for nullable value-type and '!' is for non-nullable reference type

C#
int objNullVal;     //non-nullable value type
int? objNotNullVal;    //nullable value type
string! objNotNullRef; //non-nullable reference type
string objNullRef;  //nullable reference type

Now look at the following complier effect after we run this snippet

C#
MyClass objNullRef;  // Nullable reference type
MyClass! objNotNullRef; // Non-nullable reference type
 
objNullRef = null;   // this is nullable, so no problem in assigning
objNotNullRef = null;   // Error, as objNotNullRef is non-nullable
objNotNullRef = objNullRef;      // Error, as nullable object can not be refered
 
WriteLine(objNotNullRef.ToString()); // Not null so can convert to tostring
WriteLine(objNullRef.ToString()); // could be null
 
if (objNullRef != null) { WriteLine(objNullRef.ToString); } // No error as we have already checked it
WriteLine(objNullRef!.Length); // No error

 

Local Methods/Functions

 

Local methods and functions is already there in current version of C# (Yes, we can achieve them using Func and Action types, see here Func  and Action), but still there are some limitations to local method, we can not have following features in it

  • Generic
  • out parameters
  • Ref
  • params

Now with C# 7.0 we can overcome this problems, see below snippet

C#
private static void Main(string[] args)
{
    int local_var = 100;
    int LocalFunction(int arg1)
    {
        return local_var * arg1;
    }
 
    Console.WriteLine(LocalFunction(100));
}

in above snippet we have define 'LocalFunction' as local function which is inside Main Function 'Main', here we can use out or ref in it.

Readability Improvement with Literals

Many times we use literals in code, if they are too long then we might loose Readability,   to sort out such issues C# 7.0 comes with some improvement in Literals. Now C# allows '_' (underscore) in Literals for betterment of understand, it does not effect on its value. see below snippet

C#
 var lit1 = 478_1254_3698_44;
 var lit2 = ab0Xab_bc47at_XY;

//C# also come with binary literal for bunary values

 var binLit = 1100_1011_0100_1010_1001;

**Literals are nothing but a constant value (hard-coded value) which may be with predefined meaning. (Litearls in C#)

Pattern matching

C# 7.0 allows user to use pattern in IS statement and with SWITCH statement, so we can match pattern with any datatype, patterns can be constant patterns, Type patterns, Var patterns. following sample snippet will clear your concepts, let's start with IS pattern

C#
 public  void Method1( object obj)
{
    //following null is constant pattern
     if (obj  is null)  return;
    //datatype pattern, string is datatype that we check directly     
     if (obj  is  string st)
    { //code goes here }
    else
    return; 
}

Switch pattern helps a lot as it uses any datatype for matching additionally 'case' clauses also can have its pattern so it bit flexible implementation

see below snippet

C#
class Calculate();
class Add(int a, int b, int c) : Calculate;
class Substract(int a, int b) : Calculate;
class Multiply(int a, int b, int c) : Calculate;
 
Calculate objCal = new Multiply(2, 3, 4);
switch (objCal)
{
    case Add(int a, int b, int c):
        //code goes here
        break;
    case Substract(int a, int b):
        //code goes here
        break;
    case Multiply(int a, int b, int c):
        //code goes here
        break;
    default:
        //default case
        break;
}

in above sample switch case checks pattern and call 'Multiply' method

'return' by Ref

Have you tried to return your variable from method/function as Ref ? Yes, C# 7.0 allows you to do that. Infect you can pass a variable with Ref return them as Ref  and also store them as Ref, isn't it amazing.

see below snippet

C#
ref string getFromList(string strVal, string[] Values)
{
 foreach (string val1 in Values)
 {
     if (strVal == val1)
        return ref val1; //return location as ref not actual value
 }
}

string[] values = { "a", "b", "c", "d" };
ref string strSubstitute = ref getFromList("b", values);
strSubstitute = "K"; // replaces 7 with 9 in the array
System.Write(values[1]); // it prints "K"

In above sample we have find and replace a string, by return a Ref from method.

Throw Exception from Expression

You read it right, in C# 7.0 Now you can throw exception from your expression directly. see below snippet

C#
public string getEmpInfo( string EmpName)
    {
        string[] empArr = EmpName.Split(",");
        return (empArr.Length > 0) ? empArr[0] : throw new Exception("Emp Info Not exist");
    }

In above snippet we can directly throw exception from return statement, isn't it really good !

Point to be Notice

All above features are expected to be a part of C# 7.0, yet Microsoft has release some of it with Visual studio 2015 Release 4.

Hope you enjoy these new features of C# 7.0

- Happy Coding

 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India
Hi there, I am Prasad. Author, Blogger, contributor and passionate about Microsoft .NET technologies. I like to write an articles/blogs on different .NET aspects and like to help Developers, to resolve their issues and boost them on Microsoft Technologies.


Certifications: Microsoft Certified professional (MCP), Microsoft Certified technology specialist (MCTS), Agile-Scrum Master.


Awards: Microsoft Re-connect MVP (GSC Member), Most valuable member at dotnetspider, Most popular curator, Most active curator, featured curator at Microsoft Curah, Editor at dotnetspider.


Microsoft MVP 2014 [ASP.NET/IIS]
Click here for more .NET Tips
-After all Knowledge is an endless entity

Comments and Discussions

 
GeneralThank You Pin
Priyanka Kale31-Jan-18 21:44
Priyanka Kale31-Jan-18 21:44 
QuestionWell done! Thanks! Pin
JimmyLor25-Jul-17 3:45
JimmyLor25-Jul-17 3:45 
AnswerRe: Well done! Thanks! Pin
koolprasad200326-Jul-17 1:42
professionalkoolprasad200326-Jul-17 1:42 
NewsRecord type is not released in C# 7.0 Pin
Gaurav Aroraa21-May-17 7:18
professionalGaurav Aroraa21-May-17 7:18 
GeneralRe: Record type is not released in C# 7.0 Pin
koolprasad200324-May-17 0:50
professionalkoolprasad200324-May-17 0:50 
QuestionHow to use record types ? Pin
Ammar Shaukat29-Apr-17 1:09
professionalAmmar Shaukat29-Apr-17 1:09 
AnswerRe: How to use record types ? Pin
koolprasad200329-Apr-17 1:57
professionalkoolprasad200329-Apr-17 1:57 
GeneralRe: How to use record types ? Pin
Ammar Shaukat29-Apr-17 2:05
professionalAmmar Shaukat29-Apr-17 2:05 
QuestionDigit Seperators are missing ? Pin
Ammar Shaukat26-Apr-17 19:29
professionalAmmar Shaukat26-Apr-17 19:29 
AnswerRe: Digit Seperators are missing ? Pin
koolprasad200326-Apr-17 20:30
professionalkoolprasad200326-Apr-17 20:30 
PraiseCreative explanation! Pin
Bassam Alugili2-Mar-17 3:42
Bassam Alugili2-Mar-17 3:42 
GeneralRe: Creative explanation! Pin
koolprasad20032-Mar-17 17:06
professionalkoolprasad20032-Mar-17 17:06 
NewsFeature list update Pin
Rasik Bihari Tiwari21-Nov-16 0:08
professionalRasik Bihari Tiwari21-Nov-16 0:08 
GeneralRe: Feature list update Pin
koolprasad200322-Nov-16 18:02
professionalkoolprasad200322-Nov-16 18:02 
GeneralMy vote of 5 Pin
D V L16-Nov-16 22:38
professionalD V L16-Nov-16 22:38 
GeneralRe: My vote of 5 Pin
koolprasad200317-Nov-16 1:46
professionalkoolprasad200317-Nov-16 1:46 
QuestionRehash Pin
#realJSOP14-Nov-16 4:50
mve#realJSOP14-Nov-16 4:50 
QuestionIS 'ref string' NECESSARY??? Pin
Pavel Evgenjevich Timoshenko19-Oct-16 12:29
Pavel Evgenjevich Timoshenko19-Oct-16 12:29 
AnswerRe: IS 'ref string' NECESSARY??? Pin
koolprasad200319-Oct-16 18:15
professionalkoolprasad200319-Oct-16 18:15 
GeneralRe: IS 'ref string' NECESSARY??? Pin
Pavel Evgenjevich Timoshenko20-Oct-16 10:48
Pavel Evgenjevich Timoshenko20-Oct-16 10:48 
GeneralRe: IS 'ref string' NECESSARY??? Pin
koolprasad200320-Oct-16 18:16
professionalkoolprasad200320-Oct-16 18:16 
Thumbs Up | :thumbsup:
Find More .Net development tips at : .NET Tips

The only reason people get lost in thought is because it's unfamiliar territory.

QuestionUgly Pin
Bernhard Hiller14-Oct-16 3:30
Bernhard Hiller14-Oct-16 3:30 
AnswerRe: Ugly Pin
wmjordan18-Oct-16 0:23
professionalwmjordan18-Oct-16 0:23 
AnswerRe: Ugly Pin
Siddhartha S.9-Nov-16 1:41
Siddhartha S.9-Nov-16 1:41 
AnswerRe: Ugly Pin
#realJSOP14-Nov-16 4:56
mve#realJSOP14-Nov-16 4:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.