Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_dotnet
提交
eb56e3fd
S
skill_tree_dotnet
项目概览
CSDN 技术社区
/
skill_tree_dotnet
通知
30
Star
6
Fork
4
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_dotnet
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
eb56e3fd
编写于
12月 15, 2021
作者:
F
feilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
C#第2题
上级
0e90fe0c
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
133 addition
and
1 deletion
+133
-1
data/1..NET初阶/2.C#语法/2.C#文本值和变量/String.json
data/1..NET初阶/2.C#语法/2.C#文本值和变量/String.json
+6
-0
data/1..NET初阶/2.C#语法/2.C#文本值和变量/String.md
data/1..NET初阶/2.C#语法/2.C#文本值和变量/String.md
+90
-0
data/1..NET初阶/2.C#语法/2.C#文本值和变量/config.json
data/1..NET初阶/2.C#语法/2.C#文本值和变量/config.json
+4
-1
data/1..NET初阶/2.C#语法/2.C#文本值和变量/sample/Program.cs
data/1..NET初阶/2.C#语法/2.C#文本值和变量/sample/Program.cs
+23
-0
data/1..NET初阶/2.C#语法/2.C#文本值和变量/sample/sample.csproj
data/1..NET初阶/2.C#语法/2.C#文本值和变量/sample/sample.csproj
+10
-0
未找到文件。
data/1..NET初阶/2.C#语法/2.C#文本值和变量/String.json
0 → 100644
浏览文件 @
eb56e3fd
{
"type"
:
"code_options"
,
"author"
:
"huanhuilong"
,
"source"
:
"String.md"
}
\ No newline at end of file
data/1..NET初阶/2.C#语法/2.C#文本值和变量/String.md
0 → 100644
浏览文件 @
eb56e3fd
# C# 字符串类型
以下使用 C# 字符串类型的语句,哪些都是对的?
一:
```
csharp
Console
.
WriteLine
(
"Hello, World!"
);
```
二:
```
csharp
string
helloworld1
=
"Hello, World!"
;
Console
.
WriteLine
(
helloworld1
);
```
三:
```
csharp
String
helloworld2
=
"Hello, World!"
;
Console
.
WriteLine
(
helloworld2
);
```
四:
```
csharp
var
helloworld3
=
"Hello, World!"
;
Console
.
WriteLine
(
helloworld3
);
```
五:
```
csharp
string
$
helloworld4
=
"Hello, World!"
;
Console
.
WriteLine
(
$
helloworld3
);
```
六:
```
csharp
string
helloworld5
=
'
Hello
,
World
!
'
;
Console
.
WriteLine
(
$
helloworld5
);
```
七:
```
csharp
var
helloworld6
;
helloworld6
=
"Hello, World!"
;
Console
.
WriteLine
(
helloworld6
);
```
## 答案
```
csharp
一、二、三、四
```
## 选项
### A
```
csahrp
一、二、三、五
```
### B
```
csharp
一、二、四、六
```
### C
```
csharp
一、三、四、七
```
### D
```
csharp
三、四、五、七
```
### E
```
csharp
二、四、五、六
```
data/1..NET初阶/2.C#语法/2.C#文本值和变量/config.json
浏览文件 @
eb56e3fd
...
...
@@ -2,5 +2,7 @@
"node_id"
:
"csharp-052799fae6c2498f9ef2966925377631"
,
"keywords"
:
[],
"children"
:
[],
"export"
:
[]
"export"
:
[
"String.json"
]
}
\ No newline at end of file
data/1..NET初阶/2.C#语法/2.C#文本值和变量/sample/Program.cs
0 → 100644
浏览文件 @
eb56e3fd
// See https://aka.ms/new-console-template for more information
Console
.
WriteLine
(
"Hello, World!"
);
string
helloworld1
=
"Hello, World!"
;
Console
.
WriteLine
(
helloworld1
);
String
helloworld2
=
"Hello, World!"
;
Console
.
WriteLine
(
helloworld2
);
var
helloworld3
=
"Hello, World!"
;
Console
.
WriteLine
(
helloworld3
);
string
$
helloworld4
=
"Hello, World!"
;
Console
.
WriteLine
(
$
helloworld3
);
string
helloworld5
=
'
Hello
,
World
!
'
;
Console
.
WriteLine
(
$
helloworld5
);
var
helloworld6
;
helloworld6
=
"Hello, World!"
;
Console
.
WriteLine
(
helloworld6
);
\ No newline at end of file
data/1..NET初阶/2.C#语法/2.C#文本值和变量/sample/sample.csproj
0 → 100644
浏览文件 @
eb56e3fd
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录