質問編集履歴

2

前提条件を追記しました

2021/04/25 14:15

投稿

tdkhi
tdkhi

スコア1

test CHANGED
File without changes
test CHANGED
@@ -5,6 +5,8 @@
5
5
  インスタンス変数を上書きした際に、同一インスタンスを参照しているクラスにもインスタンスの上書きを適用したいです。
6
6
 
7
7
  ただし変更を適用する際に再度newを使わずに変更適用できないか考えているのですが可能でしょうか。
8
+
9
+ 追記:プロパティ・メソッドでの更新も行わないで変更できるようにしたいです。
8
10
 
9
11
 
10
12
 

1

testAのstr tempClass パブリック変数からプロパティに変更しました。

2021/04/25 14:15

投稿

tdkhi
tdkhi

スコア1

test CHANGED
File without changes
test CHANGED
@@ -68,9 +68,9 @@
68
68
 
69
69
  {
70
70
 
71
- public string str ;
71
+ public string str { get; }
72
72
 
73
- public testA tempClass;
73
+ public testA tempClass { get; }
74
74
 
75
75
 
76
76