图解最终构建的项目是以什么形式在UBT内存中保存的?( 二 )


成员函数 ( Info)( , bool , bool )( , bool , bool , List )ne( , bool , bool , List )( , out)( ,, outValue)()
public override string ToString(){StringBuilder Result = new StringBuilder();Result.AppendFormat("{0} {1} {2}", Name, Platform, Configuration);if(!String.IsNullOrEmpty(Architecture)){Result.AppendFormat(" -Architecture={0}", Architecture);}if(ProjectFile != null){Result.AppendFormat(" -Project={0}", Utils.MakePathSafeToUseWithCommandLine(ProjectFile));}if(AdditionalArguments != null && AdditionalArguments.Count > 0){Result.AppendFormat(" {0}", AdditionalArguments);}return Result.ToString();}
()
public override int GetHashCode(){return ProjectFile.GetHashCode() + Name.GetHashCode() + Platform.GetHashCode() + Configuration.GetHashCode() + Architecture.GetHashCode();}
( Obj)
public override bool Equals(object Obj) {TargetDescriptor Other = Obj as TargetDescriptor;if (Other != null){returnProjectFile == Other.ProjectFile &&Name == Other.Name &&Platform == Other.Platform &&Configuration == Other.Configuration &&Architecture == Other.Architecture;}return false;}