Beispiel #1
0
 public void TestChangeBoolToStr01()
 {
     bool   b   = false;
     string str = DAOHelper.ChangeBoolToStr(b);
 }
Beispiel #2
0
 public void TestChangeBoolToStr02()
 {
     bool   b   = true;
     string str = DAOHelper.ChangeBoolToStr(b);
 }