BF2Statistics.MedalData.Award.ToPython C# (CSharp) 메소드

ToPython() 공개 메소드

Converts the medal data, and its conditions to python
public ToPython ( ) : string
리턴 string
        public string ToPython()
        {
            return (Conditions == null)
                ? null
                : String.Format("('{0}', '{1}', {2}, {3}),#stop", Id, StrId, Type, Conditions.ToPython());
        }