C# 클래스 XnaConsole.XnaConsoleComponent.History

Object for storing command history
파일 보기 프로젝트 열기: WCell/WCell-Terrain

공개 메소드들

메소드 설명
Add ( string str ) : void

Add a command to the history

Clear ( ) : void

Erase command history

History ( ) : System

Make a new history object with capacity maxLength

Next ( ) : string

Cycle forwards through commands in history

Previous ( ) : string

Cycle backwards through commands in history

메소드 상세

Add() 공개 메소드

Add a command to the history
public Add ( string str ) : void
str string
리턴 void

Clear() 공개 메소드

Erase command history
public Clear ( ) : void
리턴 void

History() 공개 메소드

Make a new history object with capacity maxLength
public History ( ) : System
리턴 System

Next() 공개 메소드

Cycle forwards through commands in history
public Next ( ) : string
리턴 string

Previous() 공개 메소드

Cycle backwards through commands in history
public Previous ( ) : string
리턴 string