NUnit simple practice -- Struct exists in the heap and is still in the stack

Source: Internet
Author: User

[TestFixture]
Public class StructFixtrue
{
[Test]
Public void TestStruct ()
{
DateTime a = DateTime. Now;
DateTime B =;
Assert. AreEqual (a, B, "Two structs 'value are equal .");
Assert. AreNotSame (a, B, "Two structs 'instance are not same .");

Object c = new object ();
Object d = c;
Assert. AreEqual (c, d, "Two objects 'value are equal .");
Assert. AreSame (c, d, "Two objects 'instance are same .");
}
}

 

Conclusion: Struct exists in the stack.

Note: The value type is stored in the stack, so the equivalence is unequal. The reference type is stored in the stack, so the equivalence is equal.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.