コード例 #1
0
 public void BindUtils(
     ref ObjectUtilsProxy objectUtilsProxy,
     ref LogUtilsProxy logUtilsProxy,
     ref ArrayUtilsProxy arrayUtilsProxy
     )
 {
     new ObjectUtils(ref objectUtilsProxy);
     new LogUtils(ref logUtilsProxy);
     // redirect output to the UE console and log file (needs LogUtils)
     System.Console.SetOut(new UELogWriter());
     new ArrayUtils(ref arrayUtilsProxy);
 }
コード例 #2
0
 internal ArrayUtils(ref ArrayUtilsProxy proxy)
 {
     _proxy = proxy;
 }
コード例 #3
0
 public void BindUtils(
     ref ObjectUtilsProxy objectUtilsProxy,
     ref LogUtilsProxy logUtilsProxy,
     ref ArrayUtilsProxy arrayUtilsProxy
 )
 {
     new ObjectUtils(ref objectUtilsProxy);
     new LogUtils(ref logUtilsProxy);
     // redirect output to the UE console and log file (needs LogUtils)
     System.Console.SetOut(new UELogWriter());
     new ArrayUtils(ref arrayUtilsProxy);
 }
コード例 #4
0
ファイル: ArrayUtils.cs プロジェクト: FashGek/klawr
 internal ArrayUtils(ref ArrayUtilsProxy proxy)
 {
     _proxy = proxy;
 }