Click here to Skip to main content
15,884,388 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello, i have one problem,
i don't know how to transform this code to VB.net because it can't use unsafe structure.
Can anyone help me ?

Thank you

C#
////convert BGRA8Packed to BGR8Packed
                        unsafe{
                        UInt32 sizeXold, sizeYold;
                        m_demosaicBitmap.GetSize(out sizeXold,out sizeYold);
                        newFormatBitmap.Resize((UInt32)gige.GVSP_PIXEL_TYPES.GVSP_PIX_BGR8_PACKED, sizeXold, sizeYold, 0, 0);
                        for (UInt32 y = 0; y < sizeYold; y++) {
                            Byte* rl = (Byte *) m_demosaicBitmap.GetRawData(y);
                            Byte* wl = (Byte *) newFormatBitmap.GetRawData(y);
                                for (UInt32 x = 0; x <  sizeXold; x++){
                                    wl[0] = (Byte)rl[0];
                                    wl[1] =(Byte)rl[1];
                                    wl[2] =(Byte)rl[2];                                                             
                                    rl += 4;
                                    wl += 3;
                                }
                            }
                        }


Thank you in advance
Posted

1 solution

According to many posts on Internet, this is not possible, since VB.NET does not support unsafe code.
You can use your unsafe C# code within different assembly and reference it in your VB.NET project.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900