this 在Struct 中是可读可写的
this 在Class中是只读的
例子如下:
//Class public class A { public A(string json) { this = JsonSerializor.DeSerialize<T>(json) ; // 编译错误 } public string Name{get;set;} } //Struct public struct B { public B(string json) { this = JsonSerializor.DeSerialize<T>(json) ; // OK,没有问题 } public string Name{get;set;} }