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
| public static class FormExtensions | |
| { | |
| /// <summary> | |
| /// Extension to support passing a Lambda to Invoke. | |
| /// </summary> | |
| /// <typeparam name="T"></typeparam> | |
| /// <typeparam name="R"></typeparam> | |
| /// <param name="c"></param> | |
| /// <param name="action"></param> | |
| /// <param name="arg"></param> |
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
| %YAML 1.2 | |
| --- | |
| # http://www.sublimetext.com/docs/3/syntax.html | |
| name: C++ | |
| comment: Adapted from C++.sublime-syntax | |
| file_extensions: | |
| - tps | |
| - ush | |
| first_line_match: '-\*- C\+\+ -\*-' | |
| scope: source.c++ |
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
| "Snippet Declaration": { | |
| "prefix": "snp", | |
| "description": "Snippet Declaration", | |
| "body": [ | |
| "\"${1:Snippet-Name}\" : {", | |
| "\t\"prefix\": \"${2:Snippet-Prefix}\",", | |
| "\t\"description\": \"${3:Snippet-Description}\",", | |
| "\t\"body\": [", | |
| "\t\t\"$4\",", | |
| "\t],", |