コード例 #1
0
ファイル: CString.cs プロジェクト: QuSwense/svg_helper
 public CString(int capacity)
 {
     _address  = 0;
     this._str = new CStringData(string.Empty);
     this._str._sb.Capacity = capacity;
     this.HasValue          = true;
 }
コード例 #2
0
ファイル: CString.cs プロジェクト: QuSwense/svg_helper
 CString(int i, CStringData str)
 {
     this._address = i;
     this._str     = str;
     this.HasValue = true;
 }
コード例 #3
0
ファイル: CString.cs プロジェクト: QuSwense/svg_helper
 CString(CStringData str) : this(0, str)
 {
 }
コード例 #4
0
ファイル: CString.cs プロジェクト: QuSwense/svg_helper
 public CString(string str)
 {
     _address      = 0;
     this._str     = new CStringData(str);
     this.HasValue = true;
 }