Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C#のカスタム値タイプとは何ですか?どうすれば作成できますか?
struct値型を作成するには、型を(class参照型を定義する。ではなく)として定義する必要があります。例えば:
struct
class
struct MyValueType { public string MyField; }