Click here to Skip to main content
16,005,038 members
Home / Discussions / C#
   

C#

 
GeneralRe: Bug in CSC.Exe Pin
Anonymous14-Mar-05 15:19
Anonymous14-Mar-05 15:19 
Generallistview with transparent background Pin
grandad8014-Mar-05 8:21
sussgrandad8014-Mar-05 8:21 
QuestionConfiguration Files? Pin
spacebass500014-Mar-05 7:39
spacebass500014-Mar-05 7:39 
AnswerRe: Configuration Files? Pin
Anonymous14-Mar-05 8:58
Anonymous14-Mar-05 8:58 
GeneralThread Pin
Blue_Skye14-Mar-05 6:56
Blue_Skye14-Mar-05 6:56 
GeneralRe: Thread Pin
Judah Gabriel Himango14-Mar-05 7:26
sponsorJudah Gabriel Himango14-Mar-05 7:26 
GeneralC# pixel color grouping Pin
Rene Xavier14-Mar-05 6:56
Rene Xavier14-Mar-05 6:56 
GeneralRe: C# pixel color grouping Pin
Robert Rohde14-Mar-05 18:42
Robert Rohde14-Mar-05 18:42 
If you only want to catgorize into red, green and blue I have a proposal (although I dont know how good it works):
In a reddish color the R value should be higher than the others, in a blueish a blue one should...

This leads to a rather simple if statement:
private void WhatIsIt(Color color) 
{
	if (color.R > color.G)
	{
		if (color.B > color.R)
		{
			Console.WriteLine("Its blue.");
		} 
		else 
		{
			Console.WriteLine("Its red.");
		}
	} 
	else 
	{
		if (color.G > color.B) 
		{
			Console.WriteLine("Its green.");
		} 
		else 
		{
			Console.WriteLine("Its blue.");
		}
	}
}

GeneralRe: C# pixel color grouping Pin
Rene Xavier14-Mar-05 19:48
Rene Xavier14-Mar-05 19:48 
GeneralRe: C# pixel color grouping Pin
Robert Rohde15-Mar-05 6:24
Robert Rohde15-Mar-05 6:24 
GeneralRe: C# pixel color grouping Pin
Rene Xavier15-Mar-05 14:43
Rene Xavier15-Mar-05 14:43 
Generaln-tier application Pin
Blue_Skye14-Mar-05 6:43
Blue_Skye14-Mar-05 6:43 
GeneralRe: n-tier application Pin
Ravindra Sadaphule14-Mar-05 13:08
Ravindra Sadaphule14-Mar-05 13:08 
GeneralInternet Connection! Pin
Amir Jalaly14-Mar-05 6:28
Amir Jalaly14-Mar-05 6:28 
GeneralRe: Internet Connection! Pin
i.Posei14-Mar-05 14:23
i.Posei14-Mar-05 14:23 
GeneralDeployment Process Pin
sacred_warrior14-Mar-05 6:20
sacred_warrior14-Mar-05 6:20 
GeneralWhy doesnt this work Pin
Esmo200014-Mar-05 5:19
Esmo200014-Mar-05 5:19 
GeneralRe: Why doesnt this work Pin
tdciDoug14-Mar-05 5:28
tdciDoug14-Mar-05 5:28 
GeneralRe: Why doesnt this work Pin
Esmo200014-Mar-05 5:40
Esmo200014-Mar-05 5:40 
GeneralRe: Why doesnt this work Pin
Colin Angus Mackay14-Mar-05 6:11
Colin Angus Mackay14-Mar-05 6:11 
GeneralRe: Why doesnt this work Pin
mav.northwind14-Mar-05 5:42
mav.northwind14-Mar-05 5:42 
GeneralRe: Why doesnt this work Pin
Esmo200014-Mar-05 5:58
Esmo200014-Mar-05 5:58 
GeneralRe: Why doesnt this work Pin
mav.northwind14-Mar-05 6:14
mav.northwind14-Mar-05 6:14 
GeneralRe: Why doesnt this work Pin
tdciDoug14-Mar-05 7:13
tdciDoug14-Mar-05 7:13 
GeneralRe: Why doesnt this work Pin
MoustafaS15-Mar-05 9:43
MoustafaS15-Mar-05 9:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.