FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
DotNetCoreCourse/NETPackage/02NETCore20/Program.cs at master · coolrare/DotNetCoreCourse · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
coolrare
/
DotNetCoreCourse
Public
Notifications
You must be signed in to change notification settings
Fork
25
Star
10
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
DotNetCoreCourse
/
NETPackage
/
02NETCore20
/
Program.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (26 loc) · 875 Bytes
Breadcrumbs
DotNetCoreCourse
/
NETPackage
/
02NETCore20
/
Program.cs
Copy path
File metadata and controls
29 lines (26 loc) · 875 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using
System
;
namespace
_02NETCore20
{
class
Program
{
static
void
Main
(
string
[
]
args
)
{
Console
.
WriteLine
(
" .NET Core 2.0 "
)
;
Console
.
WriteLine
(
"==============="
)
;
ShowDateTimeInfo
(
)
;
}
private
static
void
ShowDateTimeInfo
(
)
{
Console
.
WriteLine
(
)
;
Console
.
WriteLine
(
"DateTime 型別的完整組件名稱"
)
;
Console
.
WriteLine
(
typeof
(
DateTime
)
.
AssemblyQualifiedName
)
;
Console
.
WriteLine
(
)
;
Console
.
WriteLine
(
"DateTime 型別的組件所在路徑"
)
;
Console
.
WriteLine
(
typeof
(
DateTime
)
.
Assembly
.
Location
)
;
Console
.
WriteLine
(
)
;
Console
.
WriteLine
(
"DateTime.Now.ToString() 執行結果"
)
;
Console
.
WriteLine
(
DateTime
.
Now
.
ToString
(
)
)
;
Console
.
WriteLine
(
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL