This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.IO; | |
namespace EFLFE | |
{ | |
[DebuggerDisplay("DuplexTextStream: {FileName}")] | |
public sealed class DuplexTextStream : FileStream | |
{ | |
// What? Single Responsibility Principle? I don't understand what you're talking about. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Net; | |
using System.Xml; | |
namespace TryYandexTranslateAPI | |
{ | |
// Перевод текста с помощью Yandex переводчика. | |
// http://api.yandex.ru/translate/doc/dg/concepts/api-overview.xml | |
// Код взят из сайта http://jobtools.ru/2014/05/yandex-translate-api-1-5-v-c/ |