19 references to Create
illink (3)
Microsoft.Maui.Controls.Build.Tasks (15)
CompiledMarkupExtensions\StaticExtension.cs (4)
57 return new[] { Instruction.Create(OpCodes.Ldc_I4, (uint)fieldDef.Constant) }; 59 return new[] { Instruction.Create(OpCodes.Ldc_I8, (long)fieldDef.Constant) }; 67 return new[] { Instruction.Create(OpCodes.Ldc_I8, (long)fieldDef.Constant) }; 71 return new[] { Instruction.Create(OpCodes.Ldc_I4, (uint)fieldDef.Constant) };
CreateObjectVisitor.cs (5)
420 yield return Create(Ldc_I8, outlong); 422 yield return Create(Ldc_I8, 0L); 444 yield return Create(Ldc_I8, outulong); 446 yield return Create(Ldc_I8, 0L); 542 yield return Create(Ldc_I8, 0L);
NodeILExtensions.cs (6)
243 yield return Instruction.Create(OpCodes.Ldc_I8, TryFormat(s => Int64.Parse(s, CultureInfo.InvariantCulture), node, str)); 251 yield return Instruction.Create(OpCodes.Ldc_I8, unchecked((long)TryFormat(s => UInt64.Parse(s, CultureInfo.InvariantCulture), node, str))); 267 yield return Instruction.Create(OpCodes.Ldc_I8, ticks); 274 yield return Instruction.Create(OpCodes.Ldc_I8, ticks); 424 return Instruction.Create(OpCodes.Ldc_I4, (uint)ui); 426 return Instruction.Create(OpCodes.Ldc_I4, (long)l);
Mono.Cecil (1)
Mono.Cecil.Cil\ILProcessor.cs (1)
91 return Instruction.Create (opcode, value);