i have one \'C\' \'DLL\' which can take structures as input, i have to call that dll from my c# program
fallowing are the sample structures i have in c, i have to m
It's difficult to say for certain, given that you don't know if it's working or not! Regardless, it looks correct to me.
My recommendation would be to simply test out that structure you've shown here, make sure that it seems to be operating as you'd expect. Then begin to create the other 100 or so structures.
If it helps, take a look at Marshal C++ struct array into C# and the links therein.
(Scratch my original answer)
You need to have this at the top of each struct:
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
Note the CharSet named parameter. That's important, or you'll end up with wchar_t arrays instead of char arrays.