Color.ToString
ToString(): string;
string ToString();
def ToString() as string
ToString(format: string): string;
string ToString(string format);
def ToString(format as string) as string
Description

Returns a nicely formatted string of this color.

	print(Color.white);
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        print(Color.white);
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		print(Color.white)