C# 클래스 dotGit.Contributer

Class to represent an author or committer in the Git world. Mainly used by the pack file when reading a Commit.
파일 보기 프로젝트 열기: schacon/dotgit 1 사용 예제들

공개 메소드들

메소드 설명
Contributer ( string name ) : System
Contributer ( string name, string email ) : System
Parse ( string input ) : Contributer

Load Contributer from git formatted string.

ToString ( ) : string

Returns the name and email in git format: 'John Doe <[email protected]>'

비공개 메소드들

메소드 설명
Contributer ( ) : System

메소드 상세

Contributer() 공개 메소드

public Contributer ( string name ) : System
name string
리턴 System

Contributer() 공개 메소드

public Contributer ( string name, string email ) : System
name string
email string
리턴 System

Parse() 공개 정적인 메소드

Load Contributer from git formatted string.
public static Parse ( string input ) : Contributer
input string string in format: 'John Doe <[email protected]>'
리턴 Contributer

ToString() 공개 메소드

Returns the name and email in git format: 'John Doe <[email protected]>'
public ToString ( ) : string
리턴 string