I need to save those six fields in same column but not in same row and same cell. each field have default GUID.so i decided to put that default guid's in one list and fields in one list and call that object of that particular list where we want .
ArrayList Alist =
new
ArrayList();
Alist.Add(
"
FD713788-B5AE-49FF-8B2C-F311B9CB0CC4"
);
Alist.Add(
"
64B512E7-46AE-4989-A049-A446118099C4"
);
Alist.Add(
"
376D45C8-659D-4ACE-B249-CFBF4F231915"
);
Alist.Add(
"
59A2449A-C5C6-45B5-AA00-F535D83AD48B"
);
Alist.Add(
"
03ADA903-D09A-4F53-8B67-7347A08EDAB1"
);
Alist.Add(
"
2F405521-06A0-427C-B9A3-56B8931CFC57"
);
ArrayList objValue =
new
ArrayList();
objValue.Add(viewmodel.TinNo);
objValue.Add(viewmodel.CstNo);
objValue.Add(viewmodel.PanNo);
objValue.Add(viewmodel.CinNo);
objValue.Add(viewmodel.ExciseRegNo);
objValue.Add(viewmodel.ServiceTaxNo);
var
TaxInfoTaxFiledclassobj =
new
TaxInfoTaxFiled()
TaxInfoTaxFieldID = TaxInfoTaxFieldObj,
TaxFieldID =
new
Guid(Alist .ToString ()),
FieldValue = objValue.ToString(),
All are working Fine but in TaxFieldID it show the count which has been calculated from list but while saving it shows Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). error? in TaxFieldID what shall i do to resolve this probelm
TaxFieldID =
new
Guid(Alist .ToString ()),
Guid constructor does not accept array of strings, it accepts single string.
Guid g =
new
Guid(Alist[0]);
See:
Guid Constructor (System)
[
^
]
Read the question carefully.
Understand that English isn't everyone's first language so be lenient of bad
spelling and grammar.
If a question is poorly phrased then either ask for clarification, ignore it, or
edit the question
and fix the problem. Insults are not welcome.
Don't tell someone to read the manual. Chances are they have and don't get it.
Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.