fork download
  1. Imports System
  2. Imports System.Drawing
  3. Public Class Test
  4. Public Shared Sub Main()
  5. ' your code goes here
  6. Dim c1 As Color = Color.Red
  7. Dim c2 As Color = Color.Blue
  8. Dim i As Integer = c1.ToArgb() - c2.ToArgb()
  9. Console.WriteLine(i)
  10. End Sub
  11. End Class
Success #stdin #stdout 0.13s 33040KB
stdin
Standard input is empty
stdout
16711425