System.IO.TextWriter.WriteLine(uint)

Here are the examples of the csharp api System.IO.TextWriter.WriteLine(uint) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

12 Examples 7

19 Source : Console.cs
with MIT License
from dotnetGame

[CLSCompliant(false)]
        [MethodImplAttribute(MethodImplOptions.NoInlining)]
        public static void WriteLine(uint value)
        {
            Out.WriteLine(value);
        }

19 Source : TextWriter.cs
with MIT License
from dotnetGame

[MethodImpl(MethodImplOptions.Synchronized)]
            public override void WriteLine(uint value) => _out.WriteLine(value);

19 Source : TestLogger.cs
with Apache License 2.0
from elastic

public override void WriteLine(uint value)
		{
			lock (Lock)
				base.WriteLine(value);
		}

19 Source : ColoredTextWriter.cs
with MIT License
from fuse-open

public override void WriteLine(uint value)
		{
			_textWriter.WriteLine(value);
		}

19 Source : TextWriter.cs
with MIT License
from GrapeCity

public override void WriteLine(uint value)
        {
            lock (this)
            {
                writer.WriteLine(value);
            }
        }

19 Source : TimeCodeWriter.cs
with GNU General Public License v3.0
from HMBSbige

public void Write(uint timeStamp)
		{
			_sw?.WriteLine(timeStamp);
		}

19 Source : IndentedTextWriter.cs
with MIT License
from meziantou

public override void WriteLine(uint value)
        {
            OutputTabs();
            InnerWriter.WriteLine(value);
            _tabsPending = true;
        }

19 Source : MasterRemoteServer.cs
with Apache License 2.0
from micro-chen

static void SaveChannel(string filePath)
        {
            lock (_LockObj)
            {
                using (System.IO.FileStream fs = new System.IO.FileStream(filePath, System.IO.FileMode.Append,
                     System.IO.FileAccess.Write))
                {
                    using (System.IO.StreamWriter sw = new System.IO.StreamWriter(fs))
                    {
                        foreach (UInt32 channel in _Channels)
                        {
                            sw.WriteLine(channel);
                        }
                        _Channels.Clear();

                    }

                }

            }
        }

19 Source : TextWriter.cs
with MIT License
from roozbehid

public override void WriteLine (uint value)
		{
			lock (this) {
				writer.WriteLine (value);
			}
		}

19 Source : UnturnedConsoleWriter.cs
with MIT License
from SmartlyDressedGames

public override void WriteLine(uint value)
        {
            _consoleOutput.WriteLine(value);
            _streamWriter.WriteLine(value);

        }

19 Source : Console.cs
with MIT License
from spaceflint7

public static void WriteLine(uint value) => Out.WriteLine(value);

19 Source : IndentedTextWriter.cs
with MIT License
from Team-RTCLI

[CLSCompliant(false)]
        public override void WriteLine(uint value)
        {
            OutputTabs();
            _writer.WriteLine(value);
            _tabsPending = true;
        }