Click here to Skip to main content
15,895,538 members
Home / Discussions / C#
   

C#

 
QuestionJIT Debugging Pin
LiamD25-Aug-05 4:32
LiamD25-Aug-05 4:32 
QuestionGDI+: how to avoid blur when stretching image Pin
bouli25-Aug-05 4:07
bouli25-Aug-05 4:07 
AnswerRe: GDI+: how to avoid blur when stretching image Pin
Andrew Kirillov25-Aug-05 6:55
Andrew Kirillov25-Aug-05 6:55 
GeneralRe: GDI+: how to avoid blur when stretching image Pin
bouli25-Aug-05 6:56
bouli25-Aug-05 6:56 
QuestionGetting WinForm to "see" Generic Class Pin
...---...25-Aug-05 4:03
...---...25-Aug-05 4:03 
AnswerRe: Getting WinForm to "see" Generic Class Pin
Dave Kreskowiak25-Aug-05 6:52
mveDave Kreskowiak25-Aug-05 6:52 
AnswerRe: Getting WinForm to "see" Generic Class Pin
...---...25-Aug-05 8:01
...---...25-Aug-05 8:01 
GeneralRe: Getting WinForm to "see" Generic Class Pin
Dave Kreskowiak25-Aug-05 10:27
mveDave Kreskowiak25-Aug-05 10:27 
SkunkedWorks wrote:
{
GenericClass genClass = new GenericClass(); C.E.
GenericClass genClass = new GenericClass(2.0, 2.0) C.E.
GenericClass genClass = new GenericClass(double _x, double _y); C.E.

What stupid thing am I doing wrong? Thanks again


Everything except passing to integers:
GenericClass genClass = new GenericClass(2, 2);

In the first list you posted, you didn't pass any parameters. This fails because you don'
t have a constructor that takes no parameters.

The second line, you're passing in two floating point values. You don't have a constructor in your class that takes Single, Double, or Decimal.

The third line fails because, well, you can't declare variable as you pass them.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

QuestionSockets in C#, how? Pin
User 665825-Aug-05 3:54
User 665825-Aug-05 3:54 
AnswerRe: Sockets in C#, how? Pin
Judah Gabriel Himango25-Aug-05 6:56
sponsorJudah Gabriel Himango25-Aug-05 6:56 
GeneralRe: Sockets in C#, how? Pin
User 665825-Aug-05 8:09
User 665825-Aug-05 8:09 
QuestionColumn Changed Event Pin
zaboboa25-Aug-05 2:53
zaboboa25-Aug-05 2:53 
QuestionMap a drive to a Netware server from a Windows service Pin
robertod200425-Aug-05 2:43
robertod200425-Aug-05 2:43 
AnswerRe: Map a drive to a Netware server from a Windows service Pin
Dave Kreskowiak25-Aug-05 4:35
mveDave Kreskowiak25-Aug-05 4:35 
GeneralRe: Map a drive to a Netware server from a Windows service Pin
robertod200429-Aug-05 5:08
robertod200429-Aug-05 5:08 
GeneralRe: Map a drive to a Netware server from a Windows service Pin
Dave Kreskowiak29-Aug-05 9:53
mveDave Kreskowiak29-Aug-05 9:53 
GeneralRe: Map a drive to a Netware server from a Windows service Pin
robertod200430-Aug-05 0:58
robertod200430-Aug-05 0:58 
Questionstart winforms application without displaying it until receive signal? Pin
misterbear25-Aug-05 2:37
misterbear25-Aug-05 2:37 
AnswerRe: start winforms application without displaying it until receive signal? Pin
Dave Kreskowiak25-Aug-05 6:41
mveDave Kreskowiak25-Aug-05 6:41 
QuestionManifest Pin
Alex_Y25-Aug-05 2:36
Alex_Y25-Aug-05 2:36 
GeneralGetting screensize Pin
Yannielsen25-Aug-05 2:19
Yannielsen25-Aug-05 2:19 
GeneralRe: Getting screensize Pin
leppie25-Aug-05 2:29
leppie25-Aug-05 2:29 
GeneralRe: Getting screensize Pin
Yannielsen25-Aug-05 3:12
Yannielsen25-Aug-05 3:12 
Generalc# and databases Pin
nc3b25-Aug-05 1:57
nc3b25-Aug-05 1:57 
QuestionChange of form's Size property in Show method? Pin
AnonymousTwo25-Aug-05 1:52
AnonymousTwo25-Aug-05 1:52 

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.