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

static private parseFields ( IfcFlowTerminal t, List arrFields, int &ipos ) : void
t IfcFlowTerminal
arrFields List
ipos int
리턴 void
예제 #1
0
 internal static void parseFields(IfcLightFixture t, List <string> arrFields, ref int ipos)
 {
     IfcFlowTerminal.parseFields(t, arrFields, ref ipos); string s = arrFields[ipos++]; if (s[0] == '.')
     {
         t.mPredefinedType = (IfcLightFixtureTypeEnum)Enum.Parse(typeof(IfcLightFixtureTypeEnum), s.Substring(1, s.Length - 2));
     }
 }
예제 #2
0
		internal static void parseFields(IfcOutlet s, List<string> arrFields, ref int ipos)
		{
			IfcFlowTerminal.parseFields(s, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				s.mPredefinedType = (IfcOutletTypeEnum)Enum.Parse(typeof(IfcOutletTypeEnum), str.Substring(1, str.Length - 2));
		}