From 7b96ea115d51fb721130fef8622500740dea7b08 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期四, 25 八月 2022 18:06:29 +0800
Subject: [PATCH] 2022年08月25日18:06:27

---
 HDL_ON/UI/UI2/FuntionControlView/Music/SendMethod.cs |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/HDL_ON/UI/UI2/FuntionControlView/Music/SendMethod.cs b/HDL_ON/UI/UI2/FuntionControlView/Music/SendMethod.cs
index 0372c54..d37b603 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/Music/SendMethod.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/Music/SendMethod.cs
@@ -12,16 +12,16 @@
 {
     public class SendMethod
     {
-        private static SendMethod sMethod = null;
-        public static SendMethod mMethod
+        private static SendMethod s_Current= null; 
+        public static SendMethod Current
         {
             get
             {
-                if (sMethod == null)
+                if (s_Current == null)
                 {
-                    sMethod = new SendMethod();
+                    s_Current = new SendMethod();
                 }
-                return sMethod;
+                return s_Current;
             }
 
         }

--
Gitblit v1.8.0