CSE.Content.ObjectConstruction.PublicStruct_PrivateCtor.PublicStruct_PrivateCtor C# (CSharp) 메소드

PublicStruct_PrivateCtor() 개인적인 메소드

private PublicStruct_PrivateCtor ( int i, float f, Color color, Random random ) : System
i int
f float
color Color
random System.Random
리턴 System
		private PublicStruct_PrivateCtor(int i, float f, Color color, Random random) {
			this.i = i;
			this.f = f;
			this.color = color;
			this.random = random;
		}
	}
PublicStruct_PrivateCtor