CashBook.Swap C# (CSharp) 메소드

Swap() 공개 메소드

public Swap ( Text a, Text b ) : void
a Text
b Text
리턴 void
	void Swap(Text a, Text b){
		string temp = b.text;
		b.text = a.text;
		a.text = temp;
	}