本文整理汇总了C#中IronRuby.Builtins.RubyIO.ReadLineOrParagraph方法的典型用法代码示例。如果您正苦于以下问题:C# RubyIO.ReadLineOrParagraph方法的具体用法?C# RubyIO.ReadLineOrParagraph怎么用?C# RubyIO.ReadLineOrParagraph使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IronRuby.Builtins.RubyIO
的用法示例。
在下文中一共展示了RubyIO.ReadLineOrParagraph方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ReadLines
public static RubyArray/*!*/ ReadLines(RubyContext/*!*/ context, RubyIO/*!*/ self, [DefaultProtocol]MutableString separator, [DefaultProtocol]int limit) {
RubyArray result = new RubyArray();
// no dynamic call, doesn't modify $_ scope variable:
MutableString line;
while ((line = self.ReadLineOrParagraph(separator, limit)) != null) {
result.Add(line);
}
self.LineNumber += result.Count;
context.InputProvider.LastInputLineNumber = self.LineNumber;
return result;
}
示例2: Each
public static object Each(RubyContext/*!*/ context, BlockParam block, RubyIO/*!*/ self, [DefaultProtocol]MutableString separator, [DefaultProtocol]int limit) {
self.RequireReadable();
MutableString line;
while ((line = self.ReadLineOrParagraph(separator, limit)) != null) {
if (block == null) {
throw RubyExceptions.NoBlockGiven();
}
line.IsTainted = true;
context.InputProvider.LastInputLineNumber = ++self.LineNumber;
object result;
if (block.Yield(line, out result)) {
return result;
}
}
return self;
}
示例3: Each
public static object Each(BlockParam block, RubyIO/*!*/ self, [DefaultProtocol]MutableString separator) {
self.AssertOpenedForReading();
MutableString line;
while ((line = self.ReadLineOrParagraph(separator)) != null) {
if (block == null) {
throw RubyExceptions.NoBlockGiven();
}
KernelOps.Taint(block.RubyContext, line);
object result;
if (block.Yield(line, out result)) {
return result;
}
}
return self;
}
示例4: Gets
public static MutableString Gets(RubyScope/*!*/ scope, RubyIO/*!*/ self, [DefaultProtocol]MutableString separator, [DefaultProtocol]int limit) {
MutableString result = self.ReadLineOrParagraph(separator, limit);
if (result != null) {
result.IsTainted = true;
}
scope.GetInnerMostClosureScope().LastInputLine = result;
scope.RubyContext.InputProvider.LastInputLineNumber = ++self.LineNumber;
return result;
}
示例5: Gets
public static MutableString Gets(RubyScope/*!*/ scope, RubyIO/*!*/ self, [DefaultProtocol]MutableString separator) {
MutableString result = self.ReadLineOrParagraph(separator);
KernelOps.Taint(scope.RubyContext, result);
scope.GetInnerMostClosureScope().LastInputLine = result;
scope.RubyContext.InputProvider.IncrementLastInputLineNumber();
return result;
}