ArcGIS4LocalGovernment.AAState.WriteLine C# (CSharp) Method

WriteLine() public static method

public static WriteLine ( string valToWrite ) : void
valToWrite string
return void
        public static void WriteLine(string valToWrite)
        {
            try
            {
                if (AAState._sw == null)
                    return;
                else
                    AAState._sw.WriteLine(AAState.indent + valToWrite);
            }
            catch (Exception ex)
            {
                MessageBox.Show(A4LGSharedFunctions.Localizer.GetString("AttributeAssistantEditorError_1b") + ex.Message);
            }
        }