CodeDom Question

R

Russell Mangel

Sorry about the crosspost, I posted in the wrong group...

I am using C# CLR 2.0 CodeDom:

I need to create the following array:

SqlParameter[]sqlParameters={
new SqlParameter("@invID", SqlDbType.Int, 4, "invID"),
new SqlParameter("@imaID", SqlDbType.Int, 4, "imaID"),
new SqlParameter("@qtret", SqlDbType.Float, 8, "qtret")};

Would it be possible to generate this code using CodeDom?
There could be any number of elements in the array because I will be
generating this code in a loop.

Russell Mangel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top