Julia Hulsmann Trio

http://www.allmusic.com/artist/julia-h%C3%BClsmann-mn0001023432

Julia Hulsmann Trio

She (and her trio) play some real nice music, IMHO.

MI0003565026

The album “The End Of A Summer” is 100% good.

Just sending out a tip.

This link is just one of many from the internet.

Please check out this music if you can.

Thanks.

http://www.allmusic.com/artist/julia-h%C3%BClsmann-mn0001023432

 

Come to me all you who labour and are overburdened

Jesus exclaimed,

Come to me, all you who labour and are overburdened,

and I will give you rest.

Shoulder my yoke and learn from me,

for I am gentle and humble in heart,

and you will find rest for your souls.

Yes, my yoke is easy and my burden light.’

 

[Matthew 11:28-30, The Jerusalem Bible]

How To Get The Current Project Name And Class Name And Method Name Using Reflection

Get The Current Project Name And Class Name And Method Name Using Reflection

I keep having to lookup this C#.NET trick online.

So I am putting it here as a reminder to myself and for others too.

– This is one way how to get the current project-assembly name…

System.Reflection.Assembly.GetExecutingAssembly().GetName().Name

– This is one way how to get the current class name…

System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name

– This is one way how to get the current method name…

System.Reflection.MethodBase.GetCurrentMethod().Name