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
| const employees = | |
| [{ | |
| employee: 'Eleanor R. Crane', | |
| company: 'Tellus Faucibus Leo Incorporated', | |
| dailyRate: 0, | |
| salary: 15200 | |
| }, | |
| { | |
| employee: 'Haviva E. Lane', | |
| company: 'Eu Neque Pellentesque Incorporated', |
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
| write-host "`n ## NODEJS INSTALLER ## `n" | |
| ### CONFIGURATION | |
| # nodejs | |
| $version = "4.4.7-x64" | |
| $url = "https://nodejs.org/dist/latest-v4.x/node-v$version.msi" | |
| # git | |
| $git_version = "2.9.2" |
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; | |
| var myUrl = new MyURL(); | |
| //prints out https://localhost:8080/myCustomer | |
| Console.WriteLine($"{myUrl}"); | |
| return 0; | |
| public class MyURL |
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
| var myUrl = new MyURL(); | |
| //prints out https://localhost:8080/myCustomer | |
| Console.WriteLine($"{myUrl}"); | |
| return 0; | |
| public class MyURL | |
| { | |
| private const string protocol = "https"; |
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; | |
| var myUrl = new MyURL(); | |
| //prints out https://localhost:8080/myCustomer | |
| Console.WriteLine($"{myUrl}"); | |
| return 0; | |
| public class MyURL |
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 Xunit; | |
| namespace Inline_Out_Variables_Csharp | |
| { | |
| public class UnitTest1 | |
| { | |
| [Fact] | |
| public void ParseEmptyGuid_Test_OlderCsharpSyntax() | |
| { |
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 Xunit; | |
| namespace Inline_Out_Variables_Csharp | |
| { | |
| public class UnitTest1 | |
| { | |
| [Fact] | |
| public void ParseEmptyGuid_Test_CsharpSyntax_7() | |
| { |
OlderNewer