Guest User

Untitled

a guest
Mar 18th, 2025
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.15 KB | None | 0 0
  1. public interface IStreamConverter
  2. {
  3.     public Stream ConvertFileToStream(string path);
  4.    
  5.     public Task<Stream> ConvertUrlToStream(string url);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment