main.cs
来自「Microsoft?Visual C#?.NET (Core Reference」· CS 代码 · 共 20 行
CS
20 行
using System;
using ClubTypes;
using BankTypes;
namespace MSPress.CSharpCoreRef.NamespaceAmbiguity
{
class NamespaceApp
{
static void Main(string[] args)
{
// The following line won't compile due
// to an ambiguity with the Id type.
//Id myId = new Id("Ambiguous")
ClubTypes.Id clubId= new ClubTypes.Id("Club");
BankTypes.Id bankId = new BankTypes.Id("Bank");
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?