wmib.STI.STI C# (CSharp) Method

STI() public method

Creates a new instance of STI
public STI ( string Line, string Name, bool delayed = true ) : System
Line string
Name string
delayed bool
return System
        public STI(string Line, string Name, bool delayed = true)
        {
            DelayedWrite = delayed;
            file = Name;
            line = Line;
        }
STI