C# Класс XnaConsole.XnaConsoleComponent.History

Object for storing command history
Показать файл Открыть проект

Открытые методы

Метод Описание
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