Encode() публичный Метод

public Encode ( byte R, byte G, byte B, byte A ) : uint
R byte
G byte
B byte
A byte
Результат uint
Пример #1
0
 public static uint Encode(this Color Color, ColorFormat Format)
 {
     return Format.Encode(Color.R, Color.G, Color.B, Color.A);
 }