16 references to WriteByte
Microsoft.CodeAnalysis (5)
PEWriter\MetadataWriter.cs (1)
3266writer.WriteByte((byte)ILOpCode.Ldc_i4);
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoEncoder.cs (2)
51new BlobWriter(_recordCountFixup).WriteByte((byte)_recordCount); 233alignmentSizeAndLengthWriter.WriteByte((kind > CustomDebugInfoKind.DynamicLocals) ? alignmentSize : (byte)0);
StrongName\CryptoBlobParser.cs (2)
167w.WriteByte(type); 168w.WriteByte(version);
Microsoft.CodeAnalysis.Debugging.Package (2)
CustomDebugInfoEncoder.cs (2)
51new BlobWriter(_recordCountFixup).WriteByte((byte)_recordCount); 233alignmentSizeAndLengthWriter.WriteByte((kind > CustomDebugInfoKind.DynamicLocals) ? alignmentSize : (byte)0);
Microsoft.CodeAnalysis.Features (2)
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoEncoder.cs (2)
51new BlobWriter(_recordCountFixup).WriteByte((byte)_recordCount); 233alignmentSizeAndLengthWriter.WriteByte((kind > CustomDebugInfoKind.DynamicLocals) ? alignmentSize : (byte)0);
System.Reflection.Metadata (7)
System\Reflection\Metadata\BlobWriter.cs (4)
250WriteByte((byte)(value ? 1 : 0)); 261WriteByte(unchecked((byte)value)); 423WriteByte(0xff); 450WriteByte(BlobUtilities.GetUserStringTrailingByte(value));
System\Reflection\Metadata\BlobWriterImpl.cs (3)
39writer.WriteByte((byte)value); 94writer.WriteByte((byte)n); 176writer.WriteByte((byte)value);