1 write to Merged
Microsoft.ML.Samples (1)
Dynamic\Transforms\CustomMappingWithInMemoryCustomType.cs (1)
199
Merged
= new AlienBody(0, 0, 0, 0);
12 references to Merged
Microsoft.ML.Samples (12)
Dynamic\Transforms\CustomMappingWithInMemoryCustomType.cs (12)
41
", age " + firstAlien.
Merged
.Age + ", " + "height " + firstAlien
42
.
Merged
.Height + ", weight " + firstAlien.
Merged
.Weight + ", and "
43
+ firstAlien.
Merged
.HandCount + " hands.");
55
", age " + superAlien.
Merged
.Age + ", height " +
56
superAlien.
Merged
.Height + ", weight " + superAlien.
Merged
.Weight +
57
", and " + superAlien.
Merged
.HandCount + " hands.");
210
output.
Merged
.Age = input.One.Age + input.Two.Age;
211
output.
Merged
.Height = input.One.Height + input.Two.Height;
212
output.
Merged
.Weight = input.One.Weight + input.Two.Weight;
213
output.
Merged
.HandCount = input.One.HandCount + input.Two.HandCount;