unsafestatement.cs

来自「全功能c#编译器」· CS 代码 · 共 37 行

CS
37
字号
using System;
using System.Diagnostics;
using System.Collections;

namespace ICSharpCode.CsVbRefactory.Parser.AST
{
	public class UnsafeStatement : Statement
	{
		Statement block;
		
		public Statement Block {
			get {
				return block;
			}
			set {
				block = value == null ? Statement.Null : value;
			}
		}
		
		public UnsafeStatement(Statement block)
		{
			this.Block = block;
		}
		
		public override object AcceptVisitor(IASTVisitor visitor, object data)
		{
			return visitor.Visit(this, data);
		}
		
		public override string ToString()
		{
			return String.Format("[UnsafeStatement: Block={0}]", 
			                     block);
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?