This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Foo | |
| { | |
| static void Bar(Foo c) | |
| { | |
| (int x, int y) = c; // fails | |
| c.Deconstruct(out int x2, out int y2); // succeeds | |
| _ = c.Deconstruct(out int x3, out int y3); // fails due to void return | |
| } | |
| public void Deconstruct<T>(out T a, out T b) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.CSharp.RuntimeBinder; | |
| public class C | |
| { | |
| [CompilerGenerated] | |
| private static class CallSiteWrapper | |
| { | |
| public static CallSite<Func<CallSite, object, object>> CallFunc; | |
| public static void InitializeCallFuncIfNull() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| /// <summary> | |
| /// Classe de teste do PauseTokenSource e PauseToken | |
| /// </summary> | |
| class Program | |
| { | |
| static void Main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Costa.Utils.Text | |
| { | |
| public static class ReplaceMachine | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TEC Proposal with Material Design Lite components demo | |
| ------------------------------------ | |
| A [Pen](http://codepen.io/anon/pen/YyRQPE) by [Captain Anonymous](http://codepen.io/anon) on [CodePen](http://codepen.io/). | |
| [License](http://codepen.io/anon/pen/YyRQPE/license). |