Cascade.GameExtensions.PrintAll C# (CSharp) Метод

PrintAll() публичный статический Метод

public static PrintAll ( this floats ) : string
floats this
Результат string
        public static string PrintAll(this float[] floats)
        {
            string s = "";
            foreach (var f in floats)
            {
                s += f.ToString() + ", ";
            }
            return s;
        }
        public static Vector3 ToVector3(this Vector2 vec)