<?xml version="1.0" encoding="utf-8" ?>
<Tutorials>
    <Tutorial>
        <TutorialInformation>
            <Title>If Condition</Title>
            <Author>Justin</Author>
            <Steps>
                <Step>Welcome to the C# If- conditional tutorial</Step>
                <Answer>0</Answer>
            </Steps>
            <Steps>
                <Step>If condtional are used to have your code make decsions.It allows the code to have multiple choices in it's operation, so not every line of code executes every time. Think of it like a fork in the road. The if condtional is going left, while the normal execution is going right.</Step>
                <Answer>0</Answer>
            </Steps>
            <Steps>
                <Step>To create an if-condtional you need to type in:\nif()\n{\n\n}\nThe key word if lets the compiler know it will be dealing with a condition</Step>
                <Answer>if(){}</Answer>
            </Steps>
            <Steps>
                <Step>finished!</Step>
                <Answer>0</Answer>
            </Steps>
        </TutorialInformation>
    </Tutorial>
</Tutorials>