Re: Basic info needed on struct in C#
From: Alex (alexware69_at_hotmail.com)
Date: 03/24/04
- Next message: Alex: "Re: Trying to connect to SQL from Visual studio.net"
- Previous message: anonymous_at_discussions.microsoft.com: "Re: How does Microsoft know that TESTKING is illegal?"
- In reply to: Gets: "Basic info needed on struct in C#"
- Next in thread: Gets: "Re: Basic info needed on struct in C#"
- Reply: Gets: "Re: Basic info needed on struct in C#"
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 24 Mar 2004 14:09:56 -0500
Hi . What you are doing in your example is already done by the default
constructor, so you dont need to initialize all the members to zero.
Instead try changing to nonzero values.
regards, alex.
"Gets" <anonymous@discussions.microsoft.com> wrote in message
news:DA754FFC-A7F5-486C-9EDC-DB25D8E20DC1@microsoft.com...
> hi,
>
> i am beginner in C# i am currently working on Structures in C#
> i found the following stmt in MSDN for structures in C#
>
> It is an error to declare a default (parameterless) constructor for a
struct. A default constructor is always provided to initialize the struct
members to their default values.
>
> i was able o catch the first sentence of it. But the second sentence i am
not able to understand
> i tried with following example
> like
>
> public struct xxx
> {
> public int i,k;
> public xxx()
> {
> i=0; /* as per second sentence i feel this should excute but its
giving error */
> k=0;
> }
> }
>
>
> can anyone help me
>
> Thanks in advance
> Gets
- Next message: Alex: "Re: Trying to connect to SQL from Visual studio.net"
- Previous message: anonymous_at_discussions.microsoft.com: "Re: How does Microsoft know that TESTKING is illegal?"
- In reply to: Gets: "Basic info needed on struct in C#"
- Next in thread: Gets: "Re: Basic info needed on struct in C#"
- Reply: Gets: "Re: Basic info needed on struct in C#"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|