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 int TestThamTri(int temp1) | |
{ | |
temp1 = 4; | |
return temp1; | |
} | |
public static void TestThamChieu(ref int temp1, ref string temp2) | |
{ | |
temp1 = 123; | |
temp2 = "I have test Ref"; |
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
static int check; | |
public static void ThayDoi1() | |
{ | |
check = 1; | |
} | |
public static void Thaydoi2() | |
{ | |
check = 2; | |
} | |
public static void ThayDoi3() |
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
web: node app.js |
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
bin/ | |
public/ | |
routes/ | |
views/ | |
app.js | |
package.json |
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
"engines": { | |
"node": "8.1.3", | |
"npm": "5.0.4" | |
} |
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
let port = process.env.PORT || 8080; // config port | |
app.listen(port, function(){ | |
console.log(`App listening port: ${port}`); | |
}) |
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 QlNhanSuBenhVien.UserInterface; | |
using System; | |
using System.Windows.Forms; | |
namespace QlNhanSuBenhVien | |
{ | |
static class Program | |
{ | |
/// <summary> |
NewerOlder