diff options
author | olwaro <hoarau.olivier@gmail.com> | 2014-02-24 19:54:54 +0100 |
---|---|---|
committer | olwaro <hoarau.olivier@gmail.com> | 2014-02-24 19:54:54 +0100 |
commit | 7350deb1035369453c0651ecd81c4e00cae04142 (patch) | |
tree | 7c094a7ad30c2b68cf61bdb10ef4e42af7be542c /csharp.html.markdown | |
parent | 5c19094fb080653f0bf733997ad5241ee9f69d84 (diff) |
Adds loan pattern example to french translation.
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r-- | csharp.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index 81b50e08..a5b2e1c2 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -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. |