class1.cs
来自「Microsoft Mobile Development Handbook的代码」· CS 代码 · 共 31 行
CS
31 行
using System;
using System.Collections.Generic;
using System.Text;
namespace CodeForChapter4cs_DLL
{
public class SomeClass : ISomeInterface
{
#region ISomeInterface Members
void ISomeInterface.DoIt()
{
SomeClass i = new SomeClass();
ISomeOtherInterface s = (ISomeOtherInterface)i;
}
#endregion
}
public interface ISomeInterface
{
void DoIt();
}
public interface ISomeOtherInterface
{
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?