C# tuples are a new feature of C# 7. I’m going to show you the basics of how C# tuples work. I’m also going to mix in a little Couchbase to show tuples in action. However, if you don’t want to install Couchbase just to play around with tuples, don’t worry, you will still be able to follow along.
O source code that I use for this blog post is available on GitHub for you to try out if you’d like.
Note: If you’ve been using C# for a while, you might remember the Tuple Class that was introduced in .NET 4. That class still exists, but it is not the same thing as the new tuple feature of C#.
What are C# tuples?
A “tuple” is a name for a mathematical concept that is just a list of elements. In the LISP family of languages, coding is built almost entirely around the idea that everything is a list. C# once again borrows the kernel of an idea from the functional programming world and integrates it into a non-functional language. So, we get C# tuples (check out the original C# tuple proposal by Mads Torgersen for more details and background).
Remember anonymous types?
But, to make it simple, let’s consider something you may already be familiar with in C#, an anonymous type. To review, you can instantiate a new object without specifying a type:
1 |
var myObject = novo { Foo = "bar", Baz = 123 }; |
Behind the scenes, there actually é a type that inherits from the base Objeto
type, but generally speaking, we only deal with the object, not its type.
Additionally, I can’t return an anonymous type from a method, or pass an anonymous type as a parameter without losing the type information in the process.
1 2 3 4 5 6 7 8 9 10 |
privado objeto GetAnonymousObject() { retorno novo {Foo = "bar", Baz = 123}; } privado vazio AnotherMethod() { var obj = GetAnonymousObject(); Console.WriteLine(obj.Foo); // compiler error :( } |
They are useful, certainly, but I generally refer to these as anonymous objetos as I use them, for these reasons.
What’s this got to do with C# tuples?
I think of C# tuples as a way to make C# return anonymous types, but with richer information. They are a way to create a “class” on the fly without actually defining a class. The syntax for tuples is to simply put parentheses around a comma separated list of types and names. A tuple literal is just a comma separated list of literals also surrounded by parentheses. For instance:
1 2 3 4 |
(string FirstName, string Sobrenome) myTuple = ("Matt", "Groves"); Console.WriteLine(myTuple.FirstName); // no compiler error :) Console.WriteLine(myTuple.Sobrenome); // no compiler error :) |
Note: Right now I’m preferring PascalCase for tuple properties. I don’t know if that’s the official guideline or not, but it “feels” right to me.
C# tuples in action
I put tuples to work in a simple console app that interacts with Couchbase.
I created a BucketHelper
class that is a very simple facade over the normal Couchbase IBucket
. This class has two methods: one to get a document by key and return a tuple, and one to insert a tuple as a document.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
público classe BucketHelper { privado somente leitura IBucket _bucket; público BucketHelper(IBucket balde) { _bucket = balde; } público (string Chave, T obj) GetTuple<T>(string chave) { var doc = _bucket.Obter<T>(chave); retorno (doc.Id, doc.Valor); } público vazio InsertTuple<T>((string Chave, T obj) tuple) { _bucket.Inserir(novo Documento<T> { Id = tuple.Chave, Conteúdo = tuple.obj }); } } |
To instantiate this helper, you just need to pass an IBucket
into the constructor.
Tuple as a return type
You can then use the GetTuple
method to get a document out of Couchbase as a tuple.
1 2 3 |
var bucketHelper = novo BucketHelper(balde); (string chave, Film film) fightClub = bucketHelper.GetTuple<Film>("film-001"); |
The tuple will consist of a string (the document key) and an object of whatever type you specify. The document content is JSON and will be serialized to a C# object by the .NET SDK.
Also, notice that the name of the tuple properties don’t have to match. I used obj
em BucketHelper
but I used film
when I called GetTuple<Film>
. The types do have to match, of course.
Tuple as a parameter type
I can also go the other way and pass a tuple as a parameter to InsertTuple
.
1 2 3 |
string chave = Guia.NewGuid().ToString(); Film randomFilm = GenerateRandomFilm(); bucketHelper.InsertTuple((chave, randomFilm)); |
O GenerateRandomFilm
method returns a Film
object with some random-ish values (check out the Fonte do GitHub for details). A tuple of (string, Film)
is passed to InsertTuple
. The Couchbase .NET SDK takes it from there and inserts a document with the appropriate key/value.
Running the console app, you should get an output that looks something like this:
Note that the Couchbase .NET SDK at this time doesn’t have any direct tuple support, and it may not ever need it. This code is simply to help demonstrate C# tuples. I would not recommend using the BucketHelper as-is in production.
TUH-ple or TOO-ple?
I seem to remember my professor(s) pronouncing it as “TOO-ple”, so that’s what I use. Like the hard-G / soft-G debate of “GIF”, I’m sure there are those who think this debate is of the utmost importance and are convinced their pronunciation is the one true way. But, both are acceptable.
If you have questions about tuples, I’d be happy to help. You can also contact me at Twitter @mgroves ou envie-me um e-mail matthew.groves@couchbase.com.
If you have questions about the Couchbase .NET SDK that I used in this post, please ask away in the Couchbase .NET Forums. Also check out the Portal do desenvolvedor do Couchbase for more information on the .NET SDK and Couchbase in general.