How can I define table of 256 bytes.
In C# I can write:
Byte[] data = new Byte[256];
In X#:
Local data as Byte[]
data := ?
Jacek
Simple question about arrays
Simple question about arrays
Jacek,
In general you can change the C# code
new <type>(params)
to X# :
<type>{params}
so:
data := BYTE[]{256}
Robert
In general you can change the C# code
new <type>(params)
to X# :
<type>{params}
so:
data := BYTE[]{256}
Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
The Netherlands
robert@xsharp.eu
Simple question about arrays
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Simple question about arrays
Hi Wolfgang,
Nice article. Maybe you should mention also that the old VO arrays use USUALs and makes the performance lower than that of typed .NET arrays.
And that at compile time you lack the checks of the compiler.
Regards,
Otto
Nice article. Maybe you should mention also that the old VO arrays use USUALs and makes the performance lower than that of typed .NET arrays.
And that at compile time you lack the checks of the compiler.
Regards,
Otto
Simple question about arrays
Hi Otto,
thank you very much! I will add that today.
This documentation should be a community effort, and suggestions like yours help to make it better.
And of course we welcome everyone that is willing to contribute!
Wolfgang
thank you very much! I will add that today.
This documentation should be a community effort, and suggestions like yours help to make it better.
And of course we welcome everyone that is willing to contribute!
Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Simple question about arrays
Hi Otto,
I have added a note to the topic - I hope this is what you intended.
https://docs.xsharp.it/doku.php?id=net_array
Wolfgang
I have added a note to the topic - I hope this is what you intended.
https://docs.xsharp.it/doku.php?id=net_array
Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it