From 69dbf7b5848a7e657b2911a9662e6dbd4f8f516b Mon Sep 17 00:00:00 2001
From: czw <selecti@yeah.net>
Date: 星期四, 03 七月 2025 17:48:38 +0800
Subject: [PATCH] 可视化

---
 2025年6月12日/AuxAllWCS/RunTime/Code/自定义类.cs |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diff --git "a/2025\345\271\2646\346\234\21012\346\227\245/AuxAllWCS/RunTime/Code/\350\207\252\345\256\232\344\271\211\347\261\273.cs" "b/2025\345\271\2646\346\234\21012\346\227\245/AuxAllWCS/RunTime/Code/\350\207\252\345\256\232\344\271\211\347\261\273.cs"
index 3b1a585..91bcff0 100644
--- "a/2025\345\271\2646\346\234\21012\346\227\245/AuxAllWCS/RunTime/Code/\350\207\252\345\256\232\344\271\211\347\261\273.cs"
+++ "b/2025\345\271\2646\346\234\21012\346\227\245/AuxAllWCS/RunTime/Code/\350\207\252\345\256\232\344\271\211\347\261\273.cs"
@@ -751,4 +751,25 @@
         
 #endregion [鑷畾涔夌被][20250531152402452][ToWMSMES]
 }
+public class ConsoleInterceptor:TextWriter
+{
+#region    [鑷畾涔夌被][20250702112833751][ConsoleInterceptor]
+	private readonly TextWriter _originalOut;
+
+public ConsoleInterceptor()
+{
+    _originalOut = Console.Out;
+}
+
+public override Encoding Encoding => Encoding.UTF8;
+
+public override void WriteLine(string value = "")
+{
+    string values = (string)AutoThread.InvokeMethod(AutoThread.Instance, "WriteLine", new object[] { value });
+    //// 鍙互閫夋嫨缁х画杈撳嚭鍒板師鎺у埗鍙�+    if (!string.IsNullOrEmpty(values))
+        _originalOut.WriteLine(values);
+}
+#endregion [鑷畾涔夌被][20250702112833751][ConsoleInterceptor]
+}
 }
\ No newline at end of file

--
Gitblit v1.9.1