C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のEnvironment.NewLine


C#のEnviornment.NewLineは、改行を追加するために使用されます。

単語の間に改行を設定するには-

str = "This is demo text!" + Environment.NewLine + "This is demo text on next line!";

以下はコードです-

using System;
using System.IO;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         string str = "This is demo text!" + Environment.NewLine + "This is demo text on next line!";
         Console.Write(str);
      }
   }
}

出力

This is demo text!
This is demo text on next line!

  1. CSSの権利プロパティ

    rightプロパティは、要素の水平位置を設定するために使用されます。 −として設定されます right: auto|length|initial|inherit; 例 CSSで適切なプロパティを実装する例を見てみましょう- <!DOCTYPE html> <html> <head> <style> div {    text-align: justify;    text-justify: inter-word;    color: white;    backgr

  2. CSSを使用したテキストのインデント

    テキストのインデントには、CSSのtext-indentプロパティを使用します。これは、段落の最初の行をインデントするためのものです。 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> div {    text-indent: 30px; } </style> </head> <body> <h1>Demo Heading</h1> <div> <p>This is demo text.