Parse() 정적인 개인적인 메소드

static private Parse ( string str ) : IfcDraughtingCallout
str string
리턴 IfcDraughtingCallout
예제 #1
0
		//internal IfcDraughtingCallout(IfcDraughtingCallout el) : base(el) { mContents = new List<int>(el.mContents.ToArray()); }
		internal static IfcDraughtingCallout Parse(string str)
		{
			IfcDraughtingCallout d = new IfcDraughtingCallout();
			int pos = 0;
			d.Parse(str, ref pos, str.Length);
			return d;
		}