BF2Statistics.MedalData.Award.ToPython C# (CSharp) Method

ToPython() public method

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