Click here to Skip to main content
15,888,351 members
Home / Discussions / C#
   

C#

 
QuestionDrawing a polygon Pin
subramanyeswari13-Sep-05 2:33
subramanyeswari13-Sep-05 2:33 
AnswerRe: Drawing a polygon Pin
Dave Kreskowiak13-Sep-05 5:51
mveDave Kreskowiak13-Sep-05 5:51 
GeneralRe: Drawing a polygon Pin
subramanyeswari14-Sep-05 4:25
subramanyeswari14-Sep-05 4:25 
GeneralRe: Drawing a polygon Pin
Dave Kreskowiak14-Sep-05 12:42
mveDave Kreskowiak14-Sep-05 12:42 
QuestionHow do I tell .NET where to put my referenced DLLs when using "Copy Local" Pin
MaWeRic13-Sep-05 2:26
MaWeRic13-Sep-05 2:26 
AnswerRe: How do I tell .NET where to put my referenced DLLs when using "Copy Local" Pin
Andrew Kirillov13-Sep-05 3:35
Andrew Kirillov13-Sep-05 3:35 
QuestionConceptual problem with interfaces Pin
Goebel13-Sep-05 1:02
Goebel13-Sep-05 1:02 
AnswerRe: Conceptual problem with interfaces Pin
leppie13-Sep-05 1:24
leppie13-Sep-05 1:24 
This example should explain:

interface Foo { int Bar {get;} }
interface Oof { int Bar {get;} }

class FooF : Foo, Oof
{
  int foo = -1, oof = 1;
  int Foo.Bar {get { return foo; }}
  int Oof.Bar {get { return oof; }}
}
....
FooF f = new FooF();
int x = ((Foo)f).Bar;
int y = ((Oof)f).Bar;


xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
QuestionWindows Services Pin
sevan13-Sep-05 1:00
sevan13-Sep-05 1:00 
AnswerRe: Windows Services Pin
leppie13-Sep-05 1:39
leppie13-Sep-05 1:39 
AnswerRe: Windows Services Pin
Dave Kreskowiak13-Sep-05 4:49
mveDave Kreskowiak13-Sep-05 4:49 
QuestionCalling C/C++ function from C# Pin
E6AD13-Sep-05 0:35
E6AD13-Sep-05 0:35 
AnswerRe: Calling C/C++ function from C# Pin
Andrew Kirillov13-Sep-05 0:46
Andrew Kirillov13-Sep-05 0:46 
GeneralRe: Calling C/C++ function from C# Pin
E6AD13-Sep-05 1:07
E6AD13-Sep-05 1:07 
GeneralRe: Calling C/C++ function from C# Pin
Andrew Kirillov13-Sep-05 1:15
Andrew Kirillov13-Sep-05 1:15 
GeneralRe: Calling C/C++ function from C# Pin
E6AD13-Sep-05 1:35
E6AD13-Sep-05 1:35 
GeneralRe: Calling C/C++ function from C# Pin
Andrew Kirillov13-Sep-05 1:44
Andrew Kirillov13-Sep-05 1:44 
GeneralRe: Calling C/C++ function from C# Pin
E6AD13-Sep-05 1:54
E6AD13-Sep-05 1:54 
QuestionAccessing embedded text box scroll bars Pin
gemani13-Sep-05 0:30
gemani13-Sep-05 0:30 
AnswerRe: Accessing embedded text box scroll bars Pin
Mohamad Al Husseiny13-Sep-05 14:09
Mohamad Al Husseiny13-Sep-05 14:09 
GeneralRe: Accessing embedded text box scroll bars Pin
gemani13-Sep-05 22:15
gemani13-Sep-05 22:15 
GeneralRe: Accessing embedded text box scroll bars Pin
Mohamad Al Husseiny14-Sep-05 13:17
Mohamad Al Husseiny14-Sep-05 13:17 
QuestionMaking an enterprise app database independent... Pin
Salil Khedkar12-Sep-05 22:23
Salil Khedkar12-Sep-05 22:23 
AnswerRe: Making an enterprise app database independent... Pin
Mohamad Al Husseiny13-Sep-05 7:23
Mohamad Al Husseiny13-Sep-05 7:23 
Questionuse of system.threading.timer Pin
dhol12-Sep-05 21:32
dhol12-Sep-05 21:32 

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.