unicode.cs
来自「This code is a cipher which takes in a p」· CS 代码 · 共 23 行
CS
23 行
using System;
namespace Encrypt
{
/// <summary>
/// Summary description for super.
/// </summary>
///
public class Unicode//superclass
{
public string type = "";//initialise string type
public Unicode()
{
type = "Unicode"; //set type as Unicode
}
public Unicode(string typename)
{
type = typename; //type set as typename passed into function
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?