terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Read() [1/2]

override int System.Net.Base64Stream.Read ( byte[] buffer,
int offset,
int count )
inline

Definition at line 230 of file Base64Stream.cs.

231 {
232 int num;
233 for (;;)
234 {
235 if (buffer != null)
236 {
237 num = base.Read(buffer, offset, count);
238 if (num != 0)
239 {
240 break;
241 }
242 }
243 }
244 return this.DecodeBytes(buffer, offset, num);
245 }
class f__AnonymousType0<< Count > j__TPar
int DecodeBytes(byte[] buffer, int offset, int count)

References System.count, System.Net.Base64Stream.DecodeBytes(), j__TPar, and System.offset.