2
Answers

How to use Excel "Function Argument" Dialog in C#.net.

Valarmathi V

Valarmathi V

15y
3.7k
1

I would like to take the function name, Argument name and value from Excel cell using c#.net
 
Answers (2)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
The SoapFormatter class can only serialize objects that could have been created with .NET 1.1.

As generic types were not introduced until .NET 2.0, they cannot therefore be serialized.

If you're trying to serialize a List<T>, then you could use an ArrayList instead or, if you're trying to serialize a generic Dictionary then you could use a Hashset.

Otherwise, I'd use the BinaryFormatter instead.