Guest User

Untitled

a guest
Mar 9th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. class Program
  2.     {
  3.         public struct A
  4.         {
  5.             public string Str
  6.             {
  7.                 get { return Str; }
  8.                 set { Str = value; }
  9.             }
  10.         }
  11.         static void Main(string[] args)
  12.         {
  13.             A a = new A();
  14.             a.Str = "aaaaa";
  15.         }
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment