Text - Demo

using Firefly.Box;
using System.Diagnostics;

namespace Northwind.Training
{
    class DemoText
    {
        public void Run()
        {
            string s1 = "a";
            string s2 = "a  ";
            Text t1 = "a";
            Text t2 = "a  ";
            if (s1 == s2)
                Debug.WriteLine("Strings are equal");
            else
                Debug.WriteLine("Strings are not equal");
            if (t1 == t2)
                Debug.WriteLine("Texts are equal");
            else
                Debug.WriteLine("Texts are not equal");
        }
    }
} 


Help us improve, Edit this page on GitHub
or email us at info@fireflymigration.com