1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-16 11:45:04 +02:00

Adds loan pattern example to french translation.

This commit is contained in:
olwaro
2014-02-24 19:54:54 +01:00
parent 5c19094fb0
commit 7350deb103
2 changed files with 30 additions and 19 deletions

View File

@@ -435,7 +435,7 @@ on a new line! ""Wow!"", the masses cried";
Func<int, int> square = (x) => x * x; // Last T item is the return value
Console.WriteLine(square(3)); // 9
// DISPOSABLE RESSOURCES MANAGEMENT - let you handle unmanaged resources easily.
// DISPOSABLE RESOURCES MANAGEMENT - let you handle unmanaged resources easily.
// Most of objects that access unmanaged resources (file handle, device contexts, etc.)
// implement the IDisposable interface. The using statement takes care of
// cleaning those IDisposable objects for you.