Advertisement
Guest User

Untitled

a guest
May 10th, 2016
703
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text.RegularExpressions;
  5.  
  6. namespace Rextester
  7. {
  8.     public class Program
  9.     {
  10.         public static void Main(string[] args)
  11.         {
  12.             string a = new string('*', 10);
  13.             Console.WriteLine(a);
  14.            
  15.             string b = "*";
  16.             Console.WriteLine(b, 10);
  17.         }
  18.        
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement