C# 클래스 Utilities.ToDo

Class to represent "TODO" blocks which need some action. Either "optimzation", "implementation", "bugfix", "workaround".
파일 보기 프로젝트 열기: feanz/Utilities

공개 메소드들

메소드 설명
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