C# Класс Utilities.ToDo

Class to represent "TODO" blocks which need some action. Either "optimzation", "implementation", "bugfix", "workaround".
Показать файл Открыть проект

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

Метод Описание
BugFix ( Priority priority, string author, string description, System.Action action ) : void

Logs the specified action as an area for a bugfix

CodeReview ( Priority priority, string author, string description, System.Action action ) : void

Logs the specified action as a code review

Implement ( Priority priority, string author, string description, System.Action action ) : void

Implementation the specified action.

Optimize ( Priority priority, string author, string description, System.Action action ) : void

Logs the specified action for optimization.

Refactor ( Priority priority, string author, string description, System.Action action ) : void

Logs the specified action as an area for refactoring.

WorkAround ( Priority priority, string author, string description, System.Action action ) : void

Logs the specified action as a workaround

Приватные методы

Метод Описание
Do ( string tag, Priority priority, string author, string description, System.Action action ) : void

Does the specified action while logging contextual information.

Описание методов

BugFix() публичный статический Метод

Logs the specified action as an area for a bugfix
public static BugFix ( Priority priority, string author, string description, System.Action action ) : void
priority Priority The priority.
author string The author.
description string The description.
action System.Action The action.
Результат void

CodeReview() публичный статический Метод

Logs the specified action as a code review
public static CodeReview ( Priority priority, string author, string description, System.Action action ) : void
priority Priority The priority.
author string The author.
description string The description.
action System.Action The action.
Результат void

Implement() публичный статический Метод

Implementation the specified action.
public static Implement ( Priority priority, string author, string description, System.Action action ) : void
priority Priority The priority.
author string The author.
description string The description.
action System.Action The action.
Результат void

Optimize() публичный статический Метод

Logs the specified action for optimization.
public static Optimize ( Priority priority, string author, string description, System.Action action ) : void
priority Priority The priority.
author string The author.
description string The description.
action System.Action The action.
Результат void

Refactor() публичный статический Метод

Logs the specified action as an area for refactoring.
public static Refactor ( Priority priority, string author, string description, System.Action action ) : void
priority Priority The priority.
author string The author.
description string The description.
action System.Action The action.
Результат void

WorkAround() публичный статический Метод

Logs the specified action as a workaround
public static WorkAround ( Priority priority, string author, string description, System.Action action ) : void
priority Priority The priority.
author string The author.
description string The description.
action System.Action The action.
Результат void