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 gulp = require("gulp"); | |
| var minify = require("gulp-minify-css"); | |
| gulp.task("css", function () { | |
| return gulp.src("./style/style.css") | |
| .pipe(minify()) | |
| .pipe(dest("./output/style")); | |
| }); |
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 Person { | |
| public string FirstName { get; private set; } | |
| public string LastName { get; private set; } | |
| public Person(string firstName, string lastName) { | |
| ChangeName(firstName, lastName); | |
| } | |
| public void ChangeName(string firstName, string lastName) { |
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 Person { | |
| public string FirstName { get; set; } | |
| public string LastName { get; set; } | |
| } |
NewerOlder