(module: &ModuleDef, name: String, tuple: &ProductTypeDef, namespace: &str)
| 1432 | } |
| 1433 | |
| 1434 | fn autogen_csharp_tuple(module: &ModuleDef, name: String, tuple: &ProductTypeDef, namespace: &str) -> String { |
| 1435 | let mut output = CsharpAutogen::new( |
| 1436 | namespace, |
| 1437 | &["System.Collections.Generic", "System.Runtime.Serialization"], |
| 1438 | false, |
| 1439 | ); |
| 1440 | |
| 1441 | autogen_csharp_product_common(module, &mut output, name, tuple, "", |_| {}); |
| 1442 | |
| 1443 | output.into_inner() |
| 1444 | } |
| 1445 | |
| 1446 | fn autogen_csharp_product_common( |
| 1447 | module: &ModuleDef, |
no test coverage detected
searching dependent graphs…