MyC.Io.Out C# (CSharp) Method

Out() public method

public Out ( String s ) : void
s String
return void
public void Out(String s)
  {
  lst_wfile.Write(s);		// write the buffer
  lst_wfile.Flush();		// slow, but useful
  }

Usage Example

Example #1
0
 public void BeginClass()
 {
     exe.BeginClass(Io.GetClassname(), TypeAttributes.Public);
     if (Io.genlist)
     {
         io.Out(".class " + Io.GetClassname() + "{\r\n");
     }
 }
All Usage Examples Of MyC.Io::Out