@@ -27,15 +27,15 @@ internal class IdeographCompletion : Completion, IIdeographCompletion
2727
2828 public override string InsertionText { get => _origin . InsertionText ; set => _origin . InsertionText = value ; }
2929
30- public string ? MatchText { get ; }
30+ public string MatchText { get ; }
3131
3232 public override PropertyCollection Properties => _origin . Properties ;
3333
3434 #endregion Public 属性
3535
3636 #region Public 构造函数
3737
38- public IdeographCompletion ( string displayText , string ? matchText , Completion origin )
38+ public IdeographCompletion ( string displayText , string matchText , Completion origin )
3939 {
4040 DisplayText = displayText ;
4141 MatchText = matchText ;
@@ -66,15 +66,15 @@ internal class IdeographCompletion2 : Completion2, IIdeographCompletion
6666
6767 public override string InsertionText { get => _origin . InsertionText ; set => _origin . InsertionText = value ; }
6868
69- public string ? MatchText { get ; }
69+ public string MatchText { get ; }
7070
7171 public override PropertyCollection Properties => _origin . Properties ;
7272
7373 #endregion Public 属性
7474
7575 #region Public 构造函数
7676
77- public IdeographCompletion2 ( string displayText , string ? matchText , Completion2 origin )
77+ public IdeographCompletion2 ( string displayText , string matchText , Completion2 origin )
7878 {
7979 DisplayText = displayText ;
8080 MatchText = matchText ;
@@ -107,15 +107,15 @@ internal class IdeographCompletion3 : Completion3, IIdeographCompletion
107107
108108 public override string InsertionText { get => _origin . InsertionText ; set => _origin . InsertionText = value ; }
109109
110- public string ? MatchText { get ; }
110+ public string MatchText { get ; }
111111
112112 public override PropertyCollection Properties => _origin . Properties ;
113113
114114 #endregion Public 属性
115115
116116 #region Public 构造函数
117117
118- public IdeographCompletion3 ( string displayText , string ? matchText , Completion3 origin )
118+ public IdeographCompletion3 ( string displayText , string matchText , Completion3 origin )
119119 {
120120 DisplayText = displayText ;
121121 MatchText = matchText ;
@@ -148,23 +148,23 @@ internal class IdeographCompletion4 : Completion4, IIdeographCompletion
148148
149149 public override string InsertionText { get => _origin . InsertionText ; set => _origin . InsertionText = value ; }
150150
151- public string ? MatchText { get ; }
151+ public string MatchText { get ; }
152152
153153 public override PropertyCollection Properties => _origin . Properties ;
154154
155155 #endregion Public 属性
156156
157157 #region Public 构造函数
158158
159- public IdeographCompletion4 ( string displayText , string suffix , string ? matchText , Completion4 origin )
159+ public IdeographCompletion4 ( string displayText , string suffix , string matchText , Completion4 origin )
160160 : base ( displayText : null , insertionText : null , description : null , iconMoniker : default , suffix : suffix )
161161 {
162162 DisplayText = displayText ;
163163 MatchText = matchText ;
164164 _origin = origin ;
165165 }
166166
167- public IdeographCompletion4 ( string displayText , string ? matchText , Completion4 origin )
167+ public IdeographCompletion4 ( string displayText , string matchText , Completion4 origin )
168168 {
169169 DisplayText = displayText ;
170170 MatchText = matchText ;
0 commit comments